Skip to content

Commit 03dc565

Browse files
authored
Update update-components.sh
1 parent 4cece9d commit 03dc565

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

tools/update-components.sh

+1-13
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,11 @@ TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
1111
echo "Updating TinyUSB..."
1212
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
1313
git clone -b master --depth 1 "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
14-
# from right before Keyboard LED problem - No issue found
15-
# git checkout 69313ef45564cc8967575f47fb8c57371cbea470
16-
# from right after Keyboard LED problem - No issue found
17-
# git checkout 7fb8d3341ce2feb46b0bce0bef069d31cf080168
18-
# from feW DAYS after Keyboard LED problem COMMIT - Breaks LED
19-
# git checkout a435befcdeb6bbd40cf3ba342756f8d73f031957
20-
# Commit from April 26th, later. WORKS
21-
# git checkout ee9ad0f184752e4006ccfa6ae49b7ac83707d771
22-
# Last commit done the 26th April
23-
cd "$TINYUSB_REPO_DIR"
24-
git checkout 31b559370d29f5093979fc50de2ae415fa6612ce
25-
cd -
2614
else
2715
cd $TINYUSB_REPO_DIR
2816
git pull
2917
# -ff is for cleaning untracked files as well as submodules
3018
git clean -ffdx
31-
git checkout 31b559370d29f5093979fc50de2ae415fa6612ce
19+
cd -
3220
fi
3321
if [ $? -ne 0 ]; then exit 1; fi

0 commit comments

Comments
 (0)