Skip to content

Commit 6ac7ee1

Browse files
authored
Fix gcc search path in make-ota.sh (#1688)
1 parent 0b56452 commit 6ac7ee1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ota/make-ota.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e # Exit on error
44

55
export PICO_SDK_PATH="$(cd ../pico-sdk/; pwd)"
6-
export PATH="$(cd ../../system/arm-none-eabi/bin; pwd):$PATH"
6+
export PATH="$(cd ../system/arm-none-eabi/bin; pwd):$PATH"
77

88
rm -rf build
99
mkdir build

0 commit comments

Comments
 (0)