diff options
Diffstat (limited to 'build.sh')
| -rwxr-xr-x | build.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |
