[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:
parent
6c32ee4a5c
commit
0ade5595ad
|
@ -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
|
||||
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue