Skip to content
Snippets Groups Projects
Commit ae4cbede authored by Simon McVittie's avatar Simon McVittie
Browse files

_v2-entry-point: Ignore failure if ./var is a non-removable symlink


If people want to try this hard to break the runtime, let's play along.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent b82e8fc6
No related branches found
No related tags found
No related merge requests found
Pipeline #23173 passed
......@@ -181,7 +181,7 @@ done
if [ -h "${here}/var" ]; then
log "Warning: ${here}/var should not be a symbolic link. Removing it"
rm -f "${here}/var"
rm -f "${here}/var" || true
fi
if [ -n "$log_to_file" ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment