From 87f4fcce8bf9c5d22696d60125552cf177142e35 Mon Sep 17 00:00:00 2001 From: "dr.lt.data" Date: Tue, 7 May 2024 09:44:12 +0900 Subject: [PATCH] HOTFIX: This script should be executed in custom_nodes dir --- git_helper.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/git_helper.py b/git_helper.py index 2a55d2bb..37f7d265 100644 --- a/git_helper.py +++ b/git_helper.py @@ -17,8 +17,10 @@ nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json") working_directory = os.getcwd() if os.path.basename(working_directory) != 'custom_nodes': - print(f"ERROR: This script should be executed in custom_nodes dir") - exit(-1) + print(f"WARN: This script should be executed in custom_nodes dir") + print(f"DBG: INFO {working_directory}") + print(f"DBG: INFO {sys.argv}") + # exit(-1) class GitProgress(RemoteProgress):