1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

ci(auto_messages_pot): github actions seems to expect a string on stdout

This commit is contained in:
Laurent Peuch 2024-03-25 02:32:20 +01:00
parent 3f552ca54c
commit 84409c9ce1

View file

@ -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__":