From ff405b527721873b7a508463d6434eaae9be2356 Mon Sep 17 00:00:00 2001 From: ItsDrike Date: Fri, 23 Oct 2020 01:51:26 +0200 Subject: [PATCH] Inform user about git repo move --- src/util/install.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util/install.py b/src/util/install.py index e47006c..5ef7c9d 100644 --- a/src/util/install.py +++ b/src/util/install.py @@ -45,4 +45,6 @@ class Install: os.chdir(cwd) shutil.rmtree(dir_name) else: - command.execute(f"mv {dir_name} home/") + os.makedirs("download") + command.execute(f"mv {dir_name} download/") + Print.action(f"Your git repository was cloned into `download/{dir_name}`")