From f4ac50966559f59362ca0707917f63d8a97db9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Val=C3=AD=C4=8Dek?= Date: Sat, 6 Aug 2022 02:12:34 +0200 Subject: [PATCH] Fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Václav Valíček --- old/dockerbin/wizzard | 6 ------ repo_cloner/initialization_wizzard.py | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/old/dockerbin/wizzard b/old/dockerbin/wizzard index 7ad81b5..dbb444e 100755 --- a/old/dockerbin/wizzard +++ b/old/dockerbin/wizzard @@ -40,12 +40,6 @@ function reuseSSHKey(){ ssh-keygen -y -f $keyfile -P "" || true # will fail in the end, so script will continue and clean up the mess } - -root=/data/$dir_prefix-$read_project_name -# start generating config -mkdir -p $root/config -createConfigFile $root/config/cloner.cfg - # use ssh config? echo -n "Would you like to use SSH auth? ([C]reate new key/[U]se existing key/[N]o) [C/u/n]: " read read_ssh diff --git a/repo_cloner/initialization_wizzard.py b/repo_cloner/initialization_wizzard.py index 21b785d..2af2431 100644 --- a/repo_cloner/initialization_wizzard.py +++ b/repo_cloner/initialization_wizzard.py @@ -75,7 +75,7 @@ def gen_config_file( log.info("Creating detector.cfg") conf_file = conf_dir.joinpath("detector.cfg") conf_file.write_text( - "# this file is config for detector\n"" + "# this file is config for detector\n" "# now, it is empty - to disable detector, just delete it!\n" )