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 8299c6b commit af49969Copy full SHA for af49969
build_linux.sh
@@ -37,7 +37,7 @@ done < <(echo "$repos")
37
38
cd $builddir
39
if [[ "$SKIP_OPENOCD" != 1 ]]; then
40
- if ../packages/linux/openocd/build-openocd.sh; then
+ if ! ../packages/linux/openocd/build-openocd.sh; then
41
echo "OpenOCD Build failed"
42
SKIP_OPENOCD=1
43
fi
build_macos.sh
@@ -48,7 +48,7 @@ done < <(echo "$repos")
48
49
50
if [[ "$SKIP_OPENOCD" != 1 ]] && [[ $(uname -m) == 'arm64' ]]; then
51
- if ../packages/macos/openocd/build-openocd.sh; then
+ if ! ../packages/macos/openocd/build-openocd.sh; then
52
53
54
0 commit comments