diff options
-rw-r--r-- | archinstall.sh | 2 | ||||
-rw-r--r-- | bin/first_stage.sh | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/archinstall.sh b/archinstall.sh index df59821..e764b4c 100644 --- a/archinstall.sh +++ b/archinstall.sh @@ -102,4 +102,4 @@ sleep $DELAY # Launching first stage -bash $REPOSITORY_PATH/bin/first_stage.sh $DELAY $REPOSITORY_PATH $LOG_FILE_PATH +bash $REPOSITORY_PATH/bin/first_stage.sh $DELAY $REPOSITORY_PATH $LOG_FILE_PATH | tee -a $LOG_FILE_PATH diff --git a/bin/first_stage.sh b/bin/first_stage.sh index 360b2fa..4db34fa 100644 --- a/bin/first_stage.sh +++ b/bin/first_stage.sh @@ -25,9 +25,9 @@ # Argument Processing -$DELAY=$1 -$REPOSITORY_PATH=$2 -$LOG_FILE_PATH=$3 +DELAY=$1 +REPOSITORY_PATH=$2 +LOG_FILE_PATH=$3 # Interview |