We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b8fd75 commit a8aa384Copy full SHA for a8aa384
bedrock-entry.sh
@@ -95,8 +95,9 @@ if [ ! -f "bedrock_server-${VERSION}" ]; then
95
fi
96
done
97
98
- # ... overwrite all game files, except config files
99
- unzip -q ${TMP_ZIP} -x $(ls server.properties whitelist.json permissions.json 2> /dev/null)
+ # Do not overwrite existing files, which means the cleanup above needs to account for things
+ # that MUST be replaced on upgrade
100
+ unzip -q -n ${TMP_ZIP}
101
rm ${TMP_ZIP}
102
103
chmod +x bedrock_server
0 commit comments