Skip to content
Snippets Groups Projects
Commit 56c89d61 authored by Stefan Heimersheim's avatar Stefan Heimersheim
Browse files

Added -f to rm because file might not exist

parent bff75bfc
Branches
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ set -x ...@@ -5,7 +5,7 @@ set -x
image_size="3G" image_size="3G"
iso_file="ubuntu-18.04.1-desktop-amd64.iso" iso_file="ubuntu-18.04.1-desktop-amd64.iso"
workspace="/workspace/" workspace="/home/stefan/tardis/workspace"
# mtools, ddrescure, fdisk, grub, 7z # mtools, ddrescure, fdisk, grub, 7z
rm -rf "$workspace/part_files" rm -rf "$workspace/part_files"
...@@ -25,7 +25,7 @@ rm -rf "$workspace/part_files"/grub ...@@ -25,7 +25,7 @@ rm -rf "$workspace/part_files"/grub
cp "$iso_file" "$workspace/part_files/kubuntu.iso" cp "$iso_file" "$workspace/part_files/kubuntu.iso"
rm "$workspace/part.img" rm -f "$workspace/part.img"
truncate -s "$image_size" "$workspace/part.img" truncate -s "$image_size" "$workspace/part.img"
mkfs.vfat -n "LIPSTICK" "$workspace/part.img" mkfs.vfat -n "LIPSTICK" "$workspace/part.img"
MTOOLS_SKIP_CHECK=1 mcopy -i "$workspace/part.img" -b -s -v "$workspace/part_files"/* :: MTOOLS_SKIP_CHECK=1 mcopy -i "$workspace/part.img" -b -s -v "$workspace/part_files"/* ::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment