[CI-SKIP] Ensure symlink process never fails build

not sure if this is source of #1365, but doesn't hurt to make
this a non fatal error if the symlink command fails.
This commit is contained in:
Aikar 2018-08-23 21:50:36 -04:00
parent 6c32ee4a5c
commit 0ade5595ad
No known key found for this signature in database
GPG Key ID: 401ADFC9891FAAFE
1 changed files with 3 additions and 2 deletions

View File

@ -34,9 +34,10 @@ fi
# set a symlink to current
currentlink="$workdir/Minecraft/current"
if ([ ! -e "$currentlink" ] || [ -L "$currentlink" ]) && [ "$windows" == "false" ]; then
set +e
echo "Pointing $currentlink to $minecraftversion"
rm -rf "$currentlink"
ln -sfn "$minecraftversion" "$currentlink"
rm -rf "$currentlink" || true
ln -sfn "$minecraftversion" "$currentlink" || echo "Failed to set current symlink"
fi
)