aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index b5e039d..51e5d28 100755
--- a/build.sh
+++ b/build.sh
@@ -4,6 +4,9 @@
# Create a list of all files that start with sdk
sdk_files=($(find . -type d -name 'sdk*'))
+# Create the artifacts directory
+mkdir -p artifacts
+
# Loop through each SDK folder
for d in $sdk_files; do
# CD into the SDK folder
@@ -16,8 +19,6 @@ for d in $sdk_files; do
# Run the dependencies and download scripts
./download.sh
- # Create the artifacts directory
- mkdir -p artifacts
# If patch.sh exists, run it
if [ -f patch.sh ]; then