From 3f93e6a846e2bd68698d2f36763f7c2ce7b242fc Mon Sep 17 00:00:00 2001 From: Martin Winkler Date: Sat, 26 Feb 2022 23:05:29 +0100 Subject: [PATCH] Sequencer - sourcing config independent from dry run again --- sequencer/sequencer.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sequencer/sequencer.sh b/sequencer/sequencer.sh index 26aafac..a91c742 100755 --- a/sequencer/sequencer.sh +++ b/sequencer/sequencer.sh @@ -547,7 +547,7 @@ initSeqConfig() { if [ -s "$configLoc" ] ; then echoseq " [I] Using configuration file: $configLoc" SEQ_CONFIG_FILE="$configLoc" - exe . "$configLoc" + . "$configLoc" return 0 fi @@ -575,7 +575,7 @@ initSeqConfig() { echoerr " [I] Using existing configuration: $configExists" echoerr " (Moved to $configDir)" - exe . "$configLoc" + . "$configLoc" retVal=0 else # Install new template to the final location @@ -591,7 +591,7 @@ initSeqConfig() { else echo " [W] Using seq configuration from template $configTemplate" echo " (Copied to $configDir)" - exe . "$configTemplate" + . "$configTemplate" retVal=0 fi fi @@ -618,7 +618,7 @@ initSeqConfig() { case $answer in [yY]) exe "$DEFAULT_EDITOR_SYSTEM" "$configLoc" - exe . "$configLoc" + . "$configLoc" retVal=0 ;; esac