Skip to content

Commit 06bdd32

Browse files
committed
ci: fail
1 parent 54981bf commit 06bdd32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unbricked/build_all.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/bin/sh
22

33
# Recursively check all subdirectories (excluding the current directory) for build.sh
44
find . -mindepth 1 -type d | while read -r dir; do
@@ -11,8 +11,10 @@ find . -mindepth 1 -type d | while read -r dir; do
1111
echo "[SUCCESS] Build successful in: $dir"
1212
else
1313
echo "[FAILED] Build failed in: $dir"
14+
exit 1
1415
fi
1516
else
1617
echo "[FAILED] No build.sh found in: $dir"
18+
exit 1
1719
fi
1820
done

0 commit comments

Comments
 (0)