From 37600727a4850da0a702e8b0b4ec82f686730262 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sat, 3 Apr 2021 20:54:11 +0200 Subject: [PATCH] Use the utility here --- bin/app-json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/app-json.py b/bin/app-json.py index 09d9c8e..b2ea72e 100755 --- a/bin/app-json.py +++ b/bin/app-json.py @@ -87,7 +87,7 @@ def clone_all_apps(): continue if not exists(f"{CLONES_PATH}/{name}"): - run(split(f"git clone {url} {CLONES_PATH}/{name}")) + _run_cmd(f"git clone {url} {CLONES_PATH}/{name}") chdir(f"{CLONES_PATH}/{name}") if not int(_run_cmd("git branch --list | wc -l", shell=True)):