From 1665ceff7808726bace29f34da6e5fd51027fb0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Samohel?= <33513211+antirotor@users.noreply.github.com> Date: Thu, 27 Apr 2023 14:14:54 +0200 Subject: [PATCH] :recycle: change logic Co-authored-by: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> --- start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.py b/start.py index 2160f03493..3b020c76c0 100644 --- a/start.py +++ b/start.py @@ -1051,7 +1051,7 @@ def boot(): if "validate" in commands: valid = _boot_validate_versions(use_version, local_version) - sys.exit(1 if not valid else 0) + sys.exit(0 if valid else 1) if not openpype_path: _print("*** Cannot get OpenPype path from database.")