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 e3ba48f commit 65c69a3Copy full SHA for 65c69a3
test/_buildbot_doc.sh
@@ -2,14 +2,12 @@
2
set -e
3
4
TARGET=`pwd`/PYmpl
5
-TARGET_py=$TARGET/bin/python
+source $TARGET/bin/activate
6
7
-$TARGET_py -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"
+python -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"
8
9
-TARGET_easy_install=$TARGET/bin/easy_install
10
-
11
-$TARGET_easy_install sphinx
+easy_install sphinx
12
13
cd doc
14
15
-$TARGET_py make.py all
+python make.py all
0 commit comments