Skip to content

Commit ba4bac2

Browse files
authored
chore: fix JSON syntax issue in avalanchego installer script
Signed-off-by: letshard <141070422+letshard@users.noreply.github.com>
1 parent ba85383 commit ba4bac2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/avalanchego-installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ create_config_file () {
6868
echo " \"state-sync-enabled\": true$commaAdd">>config.json
6969
fi
7070
if [ "$stateOpt" = "off" ]; then
71-
echo " \"state-sync-enabled\": false$commaAdd">>config.json
71+
echo " \"state-sync-enabled\": false">>config.json
7272
fi
7373
if [ "$archivalOpt" = "true" ]; then
7474
echo " \"pruning-enabled\": false">>config.json

0 commit comments

Comments
 (0)