We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8aa05be commit 5074417Copy full SHA for 5074417
Build/Buildscripts/build-all.sh
@@ -1,8 +1,16 @@
1
#!/bin/bash
2
+set -e # Exit immediately on error
3
+
4
echo "Starting full build..."
5
echo ""
-./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"
12
-./build-inline.sh
13
+"$SCRIPT_DIR/build-inline.sh"
14
-echo "Full build completed."
15
16
+echo "Full build completed."
0 commit comments