Compare commits

..

2 Commits

Author SHA1 Message Date
ngn
ba441d5192
Merge branch 'main' of https://git.ngn.tf/ngn/website
All checks were successful
Build the docker image for the API / build (push) Successful in 10s
Build the docker image for the frontend application / build (push) Successful in 9s
Build the docker image for the doc server / build (push) Successful in 8s
2025-01-22 11:22:47 +03:00
ngn
c8a4067596
fix the admin script return value
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-22 11:12:37 +03:00

View File

@ -405,4 +405,4 @@ class AdminScript:
if __name__ == "__main__": if __name__ == "__main__":
script = AdminScript() script = AdminScript()
exit(script.run() if 1 else 0) exit(0 if script.run() else 1)