Skip to content

Commit

Permalink
fix: remove quotes around port numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
PudgyPug committed Dec 13, 2024
1 parent a457c7c commit 0af26ed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ case "$environment" in
esac

# Check for ARM processor or Unknown and exit if true, meaning the installer is not supported by the processor
if [[ "$processor" == *"arm"* || "$processor" == "Unknown" ]]; then
exit_with_error "$processor not yet supported. Exiting installer."
fi
# if [[ "$processor" == *"arm"* || "$processor" == "Unknown" ]]; then
# exit_with_error "$processor not yet supported. Exiting installer."
# fi

# Print the detected environment and processor
echo "$environment environment with $processor found."
Expand Down Expand Up @@ -604,7 +604,7 @@ touch ./.env
cat >./.env <<EOL
EXT_IP=${EXTERNALIP}
INT_IP=${INTERNALIP}
EXISTING_ARCHIVERS=[{"ip": "35.193.191.159","port": "4000","publicKey": "1c63734aedef5665d6cf02d3a79ae30aedcbd27eae3b76fff05d587a6ac62981"},{"ip": "34.73.94.45","port": "4000","publicKey": "11086314ccf8642906b99f09cf3ae9a13370c57106653cd28fc1a9eee2560b64"},{"ip": "34.19.93.147","port": "4000","publicKey": "b09a8792593682cbffbbf2fc3bd812d8143740197a5f435c77a38740397088ac"}]
EXISTING_ARCHIVERS=[{"ip": "35.193.191.159","port": 4000,"publicKey": "1c63734aedef5665d6cf02d3a79ae30aedcbd27eae3b76fff05d587a6ac62981"},{"ip": "34.73.94.45","port": 4000,"publicKey": "11086314ccf8642906b99f09cf3ae9a13370c57106653cd28fc1a9eee2560b64"},{"ip": "34.19.93.147","port": 4000,"publicKey": "b09a8792593682cbffbbf2fc3bd812d8143740197a5f435c77a38740397088ac"}]
APP_MONITOR=${APPMONITOR}
DASHPASS=${DASHPASS}
DASHPORT=${DASHPORT}
Expand Down

0 comments on commit 0af26ed

Please sign in to comment.