From: Oleg Broytman Date: Mon, 6 Nov 2023 00:35:30 +0000 (+0300) Subject: bin/compyleall: Do not check error code X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;ds=sidebyside;h=00569e3d2f237b3e92a82bdcabffb32d9fa90900;p=dotfiles.git bin/compyleall: Do not check error code `compileall` can return error on `SyntaxError` but the program could continue. --- diff --git a/bin/compyleall b/bin/compyleall index f78f33d..70e95c8 100755 --- a/bin/compyleall +++ b/bin/compyleall @@ -1,3 +1,4 @@ #! /bin/sh - python$PY_VER -m compileall . && + + python$PY_VER -m compileall . exec python$PY_VER -O -m compileall .