diff options
author | Marvin Borner | 2020-04-16 19:06:33 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-16 19:06:33 +0200 |
commit | 4014a36377ff69f6433e7b0af2144bc3a7d29ca7 (patch) | |
tree | 9440ac3749d406c6df9917d4bb3a19de6ea99655 /run | |
parent | fc26e84ef8c6255926811fe639e3e466b756e581 (diff) |
Many fix attempts for the divide by zero exception
Diffstat (limited to 'run')
-rwxr-xr-x | run | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -136,7 +136,6 @@ p 1 2048 199999 -a w EOF @@ -144,6 +143,12 @@ EOF cp ./build/ext2_hda.img ./build/ext2_hdc.img cp ./build/ext2_hda.img ./build/ext2_hdd.img + mkdir mnt/ + sudo mount ./build/ext2_hda.img mnt/ + echo "Bananenkuchen" | sudo tee -a mnt/test.txt + sudo umount mnt + rm -r mnt/ + printf "Build finshed successfully!\n\n" } |