From f3ef08650cb33b9af19fc48be209e0f1273b7a5b Mon Sep 17 00:00:00 2001 From: "S. Paquette" Date: Mon, 1 Nov 2021 17:11:01 -0700 Subject: [PATCH] -> Line termination fun --- shell/env.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/env.sh b/shell/env.sh index f388643f4..ff9002b78 100755 --- a/shell/env.sh +++ b/shell/env.sh @@ -1,12 +1,12 @@ # Location of the .env file # This is NOT a relative path and should NOT be the same value as SECURE_LOCAL_PATH # This should be an absolute path on the VM. -# The default value assumes a SECURE_LOCAL_PATH setting of ../parenDir/secure_files/idc/ +# The default value assumes a SECURE_LOCAL_PATH setting of ../parenDir/secure_files/ if [ ! -f "/home/vagrant/www/secure_path.env" ]; then - echo "No secure_path.env found - using default value of /home/vagrant/parentDir/secure_files/.env." + echo "No secure_path.env found - using default value of /home/vagrant/secure_files/.env." echo "If your .env is not at this location, you must make a secure_path.env file with the SECURE_LOCAL_PATH" echo "value as its only entry and place it in the root directory (/home/vagrant/www)." - export ENV_FILE_PATH=/home/vagrant/parentDir/secure_files/idc/.env + export ENV_FILE_PATH=/home/vagrant/secure_files/.env else echo "secure_path.env setting found." export ENV_FILE_PATH=$(cat /home/vagrant/www/secure_path.env)