Thanks to visit codestin.com Credit goes to github.com
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 b24eda1 commit f9429f8Copy full SHA for f9429f8
1 file changed
test/_buildbot_doc.sh
@@ -2,13 +2,31 @@
2
set -e
3
4
TARGET=`pwd`/PYmpl
5
+echo "activating virtual environment"
6
source $TARGET/bin/activate
7
8
+echo "removing MPL config dir"
9
python -c "import shutil,matplotlib; x=matplotlib.get_configdir(); shutil.rmtree(x)"
10
11
+echo "calling 'easy_install sphinx'"
12
easy_install sphinx
13
14
+echo "calling 'cd doc'"
15
cd doc
16
17
+echo "calling 'python make.py clean'"
18
python make.py clean
19
+
20
+echo "calling 'python make.py all'"
21
python make.py all
22
23
+# SourceForce needs the below
24
+echo "configuring for upload to SourceForge"
25
26
+echo "Options +Indexes" > build/html/.htaccess
27
28
+chmod -R a+r build
29
+find build -type d | xargs chmod a+rx
30
31
+echo "listing built files"
32
+find build
0 commit comments