Skip to content

Commit

Permalink
fix: default config path for installation script
Browse files Browse the repository at this point in the history
  • Loading branch information
debendraoli committed Oct 30, 2024
1 parent a553334 commit 249f34e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ fi

# RELAYER CONFIG_PATH
read -p "Enter relayer config (path to config.yaml) [./config.yaml]: " CONFIG_PATH
CONFIG_PATH=${CONFIG_PATH:-./config.yaml}

# Check if CONFIG_PATH exists
if [[ ! -f "${CONFIG_PATH}" ]]; then
Expand All @@ -119,7 +118,7 @@ ENABLE_LETSENCRYPT=${ENABLE_LETSENCRYPT}
LETSENCRYPT_USE_STAGING=${LETSENCRYPT_USE_STAGING}
LETSENCRYPT_DOMAIN=${LETSENCRYPT_DOMAIN}
LETSENCRYPT_EMAIL=${LETSENCRYPT_EMAIL}
CONFIG_PATH=${CONFIG_PATH}
CONFIG_PATH=${CONFIG_PATH:-./config.yaml}
EOF

# Navigate to configuration directory
Expand Down

0 comments on commit 249f34e

Please sign in to comment.