We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f92b314 commit e308b1eCopy full SHA for e308b1e
tools/update-components.sh
@@ -11,11 +11,14 @@ TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
11
echo "Updating TinyUSB..."
12
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
13
git clone -b master --depth 1 "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
14
+ cd "$TINYUSB_REPO_DIR"
15
+ git checkout a4fb8354e41b2604f66e7da22afa292b1a44f0a2
16
+ cd -
17
else
18
cd $TINYUSB_REPO_DIR
19
git pull
20
# -ff is for cleaning untracked files as well as submodules
21
git clean -ffdx
- cd -
22
23
fi
24
if [ $? -ne 0 ]; then exit 1; fi
0 commit comments