11 lines
266 B
Bash
Executable File
11 lines
266 B
Bash
Executable File
set -e
|
|
#!/bin/sh
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
|
./gradlew multiplatform-crypto-api:build
|
|
#now let's build linux deps
|
|
cd sodiumWrapper
|
|
./makeMacosIosWatchosTvos.sh
|
|
#now we can do the delegated build
|
|
cd ..
|
|
set +e
|