From ca4bef84dfdf45acac51e957183734accd3b5af4 Mon Sep 17 00:00:00 2001 From: yurisuki <30354739+yurisuki@users.noreply.github.com> Date: Sun, 21 Apr 2019 16:06:26 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=A6=E2=80=8D=E2=99=80=EF=B8=8F=20didn'?= =?UTF-8?q?t=20notice=20=F0=9F=A4=A6=E2=80=8D=E2=99=80=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .scripts/tools/bootiso | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.scripts/tools/bootiso b/.scripts/tools/bootiso index b6bef808..a2e9a96d 100755 --- a/.scripts/tools/bootiso +++ b/.scripts/tools/bootiso @@ -31,7 +31,7 @@ echo "$drives" echo -e "\n\nWhich one do you want to use? (/dev/sdb)" read chosen -[ "$chosen" = "" ] && echo lol || check2 +[ "$chosen" = "" ] && chosen="/dev/sdb" && check2 || check2 } check2() { @@ -59,6 +59,7 @@ fi burn() { clear +echo "$image is $(du -bsh $image | awk '{print $1}')s" sudo dd bs=4M if=$image of=$chosen status=progress oflag=sync }