Remove unused ENV_FILE from install script
Since ENV_FILE is no longer replaced, remove the variable and its echo to simplify the script. Changes: - Remove ENV_FILE definition - Remove Env file echo in main
This commit is contained in:
parent
cc00650bc2
commit
4a96c4a291
1 changed files with 0 additions and 2 deletions
|
|
@ -14,7 +14,6 @@ NC='\033[0m' # No Color
|
||||||
# Default paths
|
# Default paths
|
||||||
PROJECT_DIR="$(pwd)"
|
PROJECT_DIR="$(pwd)"
|
||||||
STATE_DIR="./state"
|
STATE_DIR="./state"
|
||||||
ENV_FILE="./.env"
|
|
||||||
|
|
||||||
# Functions
|
# Functions
|
||||||
check_dependencies() {
|
check_dependencies() {
|
||||||
|
|
@ -88,7 +87,6 @@ post_install() {
|
||||||
echo -e "${GREEN}Email Forwarder Install Script${NC}"
|
echo -e "${GREEN}Email Forwarder Install Script${NC}"
|
||||||
echo "Project dir: $PROJECT_DIR"
|
echo "Project dir: $PROJECT_DIR"
|
||||||
echo "State dir: $STATE_DIR"
|
echo "State dir: $STATE_DIR"
|
||||||
echo "Env file: $ENV_FILE"
|
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
read -p "Continue with installation? (y/N): " -n 1 -r
|
read -p "Continue with installation? (y/N): " -n 1 -r
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue