From 58943edff44415d315416714d884ad016381abbc Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 25 Mar 2024 02:32:20 +0100 Subject: [PATCH] ci(auto_messages_pot): github actions seems to expect a string on stdout --- .github/diff_pot_files.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/diff_pot_files.py b/.github/diff_pot_files.py index 53082f9..6d37c5c 100644 --- a/.github/diff_pot_files.py +++ b/.github/diff_pot_files.py @@ -20,9 +20,9 @@ def main(): file_2 = load_pot_file(sys.argv[2]) if [x for x in file_1.keys() if x] == [x for x in file_2.keys() if x]: - sys.exit(1) + print("false") else: - sys.exit(0) + print("true") if __name__ == "__main__":