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 a06e2e9 commit 0f50b54Copy full SHA for 0f50b54
tools/update-components.sh
@@ -10,8 +10,9 @@ TINYUSB_REPO_URL="https://github.com/hathach/tinyusb.git"
10
TINYUSB_REPO_DIR="$AR_COMPS/arduino_tinyusb/tinyusb"
11
if [ ! -d "$TINYUSB_REPO_DIR" ]; then
12
git clone "$TINYUSB_REPO_URL" "$TINYUSB_REPO_DIR"
13
-else
14
- git -C "$TINYUSB_REPO_DIR" fetch && \
15
- git -C "$TINYUSB_REPO_DIR" pull --ff-only
16
fi
17
if [ $? -ne 0 ]; then exit 1; fi
+
+cd "$TINYUSB_REPO_DIR"
+git checkout 9ca4bc89a7e285796e8102eb7a8fd1bbc6fb9938
18
+cd -
0 commit comments