From 00569e3d2f237b3e92a82bdcabffb32d9fa90900 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 6 Nov 2023 03:35:30 +0300 Subject: [PATCH] bin/compyleall: Do not check error code `compileall` can return error on `SyntaxError` but the program could continue. --- bin/compyleall | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 . -- 2.39.2