Skip to content

Commit

Permalink
correct install to usb picker if/else bug
Browse files Browse the repository at this point in the history
  • Loading branch information
SolidHal committed Nov 27, 2024
1 parent 494c265 commit a8b1f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/InstallScripts/InstallPrawnOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ install() {
then
if [ -e /dev/sdb ]; then
TARGET=/dev/sdb
elif [ -e /dev/sdc ];
elif [ -e /dev/sdc ]; then
TARGET=/dev/sdc
else
echo "unable to find a target usb device to install to, please ensure one is plugged in and is available at /dev/sdb or /dev/sdc"
Expand Down

0 comments on commit a8b1f9a

Please sign in to comment.