Skip to content

Commit

Permalink
Fixed a couple of flags in the installer (ava-labs#1009)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpop32 authored Sep 8, 2022
1 parent 4af13ff commit 4075055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/avalanchego-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ create_config_file () {
echo " \"http-host\": \"\",">>node.json
fi
if [ "$adminOpt" = "true" ]; then
echo " \"api-admin-enabled \": \"true\",">>node.json
echo " \"api-admin-enabled\": true,">>node.json
fi
if [ "$indexOpt" = "true" ]; then
echo " \"index-enabled\": \"true\",">>node.json
echo " \"index-enabled\": true,">>node.json
fi
if [ "$fujiOpt" = "true" ]; then
echo " \"network-id\": \"fuji\",">>node.json
Expand Down

0 comments on commit 4075055

Please sign in to comment.