We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2a8143 commit 0baf50aCopy full SHA for 0baf50a
.github/workflows/docgen.yml
@@ -70,9 +70,9 @@ jobs:
70
cp toolchains/ci_workspaces/WORKSPACE.x86_64 WORKSPACE
71
cd py
72
echo $(which python3)
73
- echo $(python3 -c 'import site; print(site.getsitepackages())')
+ echo $(python3 -c 'import site; print(site.getsitepackages()[0])')
74
mkdir -p /opt/circleci/.pyenv/versions/3.9.4/lib/python3.9/
75
- ln -s $(python3 -c 'import site; print(site.getsitepackages())') /opt/circleci/.pyenv/versions/3.9.4/lib/python3.9/site-packages
+ ln -s $(python3 -c 'import site; print(site.getsitepackages()[0])') /opt/circleci/.pyenv/versions/3.9.4/lib/python3.9/site-packages
76
python3 setup.py install
77
cd ..
78
- name: Generate New Docs
0 commit comments