GAM version merge (kaa-boom)

This commit is contained in:
Jay Lee
2023-07-21 18:24:45 +00:00
parent 3046cbf3b9
commit 03917fb70b
188 changed files with 120374 additions and 33256 deletions

View File

@@ -7,7 +7,7 @@ a = sys.argv[1]
b = sys.argv[2]
result = version.parse(a) >= version.parse(b)
if result:
print(f'OK: {a} is equal or newer than {b}')
print('OK: %s is equal or newer than %s' % (a, b))
else:
print(f'ERROR: {a} is older than {b}')
print('ERROR: %s is older than %s' % (a, b))
sys.exit(not result)