Create build.sh
Browse files
build.sh
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
set -e
|
3 |
+
|
4 |
+
echo "Starting build process..."
|
5 |
+
|
6 |
+
# Make sure install.sh is executable
|
7 |
+
chmod +x install.sh
|
8 |
+
|
9 |
+
# Run the installation
|
10 |
+
./install.sh
|
11 |
+
|
12 |
+
echo "Build process complete!"
|