Skip to content

Commit 5074417

Browse files
authored
Update build-all.sh
1 parent 8aa05be commit 5074417

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

Build/Buildscripts/build-all.sh

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
#!/bin/bash
2+
set -e # Exit immediately on error
3+
24
echo "Starting full build..."
35
echo ""
4-
./build.sh
6+
7+
# Determine the directory of this script
8+
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
9+
10+
# Run each script relative to this directory
11+
"$SCRIPT_DIR/build.sh"
512
echo ""
6-
./build-inline.sh
13+
"$SCRIPT_DIR/build-inline.sh"
714
echo ""
8-
echo "Full build completed."
15+
16+
echo "Full build completed."

0 commit comments

Comments
 (0)