]> git.phdru.name Git - dotfiles.git/commitdiff
bin/compyleall: Do not check error code
authorOleg Broytman <phd@phdru.name>
Mon, 6 Nov 2023 00:35:30 +0000 (03:35 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 6 Nov 2023 00:35:30 +0000 (03:35 +0300)
`compileall` can return error on `SyntaxError`
but the program could continue.

bin/compyleall

index f78f33d0239ad120b0b6050f7e54729886f11d9a..70e95c83e706658fdd7d2f8cdc38378bf1315c67 100755 (executable)
@@ -1,3 +1,4 @@
 #! /bin/sh
-     python$PY_VER    -m compileall . &&
+
+     python$PY_VER    -m compileall .
 exec python$PY_VER -O -m compileall .