Ignore existing files when unpacking server zippies
This commit is contained in:
parent
62c4ef86af
commit
82715dcd5b
@ -16,7 +16,7 @@ if [ -n "$FORGE_PACK_ZIP" ]; then
|
||||
unzip pack.zip
|
||||
directory="$(find . -type d -iname "mods" -execdir pwd \; | sort -n | head -n 1)"
|
||||
echo "Found modpack directory: $directory"
|
||||
rsync -av "$directory"/ /minecraft/
|
||||
rsync -av --ignore-existing "$directory"/ /minecraft/
|
||||
popd > /dev/null 2>&1
|
||||
fi
|
||||
|
||||
@ -27,7 +27,7 @@ if [ -n "$CONFIG_REPO" ]; then
|
||||
pushd "$tmpdir" > /dev/null 2>&1
|
||||
git clone "$CONFIG_REPO" .
|
||||
rm -rf .git
|
||||
rsync -av ./ /minecraft/
|
||||
rsync -av --delete ./ /minecraft/
|
||||
popd > /dev/null 2>&1
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user