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