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 399c763 commit d2a8143Copy full SHA for d2a8143
.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
- ls $(which python3)/..
+ echo $(python3 -c 'import site; print(site.getsitepackages())')
74
mkdir -p /opt/circleci/.pyenv/versions/3.9.4/lib/python3.9/
75
- ln -s /__t/Python/3.9.4/x64/lib/python3.9/site-packages /opt/circleci/.pyenv/versions/3.9.4/lib/python3.9/site-packages
+ ln -s $(python3 -c 'import site; print(site.getsitepackages())') /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