okewunmi commited on
Commit
fd3c8cb
·
verified ·
1 Parent(s): 29bfa47

Create build.sh

Browse files
Files changed (1) hide show
  1. build.sh +12 -0
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!"