From c9f45b7fe8317b5b99c0b7b5a3de2e078b8bb474 Mon Sep 17 00:00:00 2001 From: Raphael Assenat Date: Tue, 8 Dec 2015 22:08:13 -0500 Subject: [PATCH] Fix tool -> tools --- scripts/enter_bootloader.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/enter_bootloader.sh b/scripts/enter_bootloader.sh index 36e332b..27c8bd2 100755 --- a/scripts/enter_bootloader.sh +++ b/scripts/enter_bootloader.sh @@ -1,10 +1,10 @@ #!/bin/bash -TOOL=./tool/gcn64ctl +TOOL=./tools/gcn64ctl if [ -x $TOOL ]; then $TOOL -f --bootloader - exit 0 # The tool fails, but we should continue + exit 0 # The tool fails, but we should continue anyway in case the chip is already in bootloader else echo $TOOL not found. Please compile it to enter bootloader automatically. fi