Drop the -f option in the mv call

It hides the error message when the file is missing.  And even without -f,
by default, there's no prompt about overwriting files.
merge-requests/16/head
Raphaël Hertzog 5 years ago
parent 36bafa26b4
commit d789b34160

@ -271,5 +271,5 @@ case "$IMAGE_TYPE" in
esac
set -e
mv -f $IMAGE_NAME $TARGET_DIR/$(target_image_name $KALI_ARCH)
mv -f $BUILD_LOG $TARGET_DIR/$(target_build_log $KALI_ARCH)
mv $IMAGE_NAME $TARGET_DIR/$(target_image_name $KALI_ARCH)
mv $BUILD_LOG $TARGET_DIR/$(target_build_log $KALI_ARCH)

Loading…
Cancel
Save