Replaced all instances of 'python' with 'python2'

On systems where 'python' refers to python3, redo
failed to launch. All invocations of python have been
made explicitly python2 invocations. All tests pass
on an Arch Linux system as of this commit.
This commit is contained in:
Seamus Connor 2018-11-14 10:52:04 -08:00
commit 190b4c34ff
15 changed files with 16 additions and 16 deletions

View file

@ -1,5 +1,5 @@
umask 0022
redo mode1
MODE=$(python -c 'import os; print oct(os.stat("mode1").st_mode & 07777)')
MODE=$(python2 -c 'import os; print oct(os.stat("mode1").st_mode & 07777)')
[ "$MODE" = "0644" ] || exit 78