From: flip1995 Date: Thu, 13 Feb 2020 17:07:56 +0000 (+0100) Subject: Use python3 instead of python X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=0533cff125d89e15bfda0a265ef01b1b33d8cd95;hp=-c;p=rust.git Use python3 instead of python This changes the formatting a bit of json.dump(..) --- 0533cff125d89e15bfda0a265ef01b1b33d8cd95 diff --git a/.github/deploy.sh b/.github/deploy.sh index 59a7cdae866..8007bc75cdd 100644 --- a/.github/deploy.sh +++ b/.github/deploy.sh @@ -8,7 +8,7 @@ rm -rf out/master/ || exit 0 echo "Making the docs for master" mkdir out/master/ cp util/gh-pages/index.html out/master -python ./util/export.py out/master/lints.json +python3 ./util/export.py out/master/lints.json if [[ -n $TAG_NAME ]]; then echo "Save the doc for the current tag ($TAG_NAME) and point current/ to it" @@ -21,7 +21,7 @@ fi cp util/gh-pages/versions.html out/index.html echo "Making the versions.json file" -python ./util/versions.py out +python3 ./util/versions.py out cd out # Now let's go have some fun with the cloned repo