Skip to content

Commit 4b09e28

Browse files
committed
Fix deploy.sh and python2 usage
1 parent b7df2f8 commit 4b09e28

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ rm -rf out/master/ || exit 0
2424
# Make the doc for master
2525
mkdir out/master/
2626
cp util/gh-pages/index.html out/master
27-
./util/export.py out/master/lints.json
27+
python3 ./util/export.py out/master/lints.json
2828

2929
# Save the doc for the current tag and point current/ to it
3030
if [ -n "$TRAVIS_TAG" ]; then

util/export.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python2
22
# Build the gh-pages
33

44
import json

0 commit comments

Comments
 (0)