diff --git a/tools/startVanillaServer.js b/tools/startVanillaServer.js index cbd9870..4740bef 100644 --- a/tools/startVanillaServer.js +++ b/tools/startVanillaServer.js @@ -62,7 +62,7 @@ async function download (os, version, path = 'bds-') { await get(found, 'bds.zip') console.info('⚡ Unzipping') // Unzip server - if (process.platform === 'linux') cp.execSync('unzip bds.zip && chmod +777 ./bedrock_server') + if (process.platform === 'linux') cp.execSync('unzip -u bds.zip && chmod +777 ./bedrock_server') else cp.execSync('tar -xf bds.zip') return verStr }