aboutsummaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorLiam <lgh@e.email>2024-01-09 16:51:22 +0100
committerLiam <lgh@e.email>2024-01-09 16:51:22 +0100
commitfad7e3de95085e7aa3a6d86394ad147b0c1e76e7 (patch)
treea772935fe4731efedc1e620982b213119b1eb89f /build.sh
parentb10de1233cf24c3dd22006a05fde97e212c9983f (diff)
downloadSDK-Rebuild-main.tar.gz
SDK-Rebuild-main.tar.bz2
SDK-Rebuild-main.zip
rename old minor releasesHEADmain
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