init_funtions.sh: remove invalid option from unlink

This commit is contained in:
2024-03-25 19:47:46 +01:00
parent 17c788f0b6
commit 5a6564cfa1

View File

@@ -371,7 +371,7 @@ function create_dist_tree () {
DEPLOY_DIR="$BUILD_ROOT/$DL/tmp/deploy"
do_exec "ln -sf $DEPLOY_DIR $DIST_BASEDIR/$DL"
if test -L "$DIST_BASEDIR/$DL/deploy"; then
do_exec "unlink -v $DIST_BASEDIR/$DL/deploy"
do_exec "unlink $DIST_BASEDIR/$DL/deploy"
fi
done
}