9 lines
367 B
Bash
Executable File
9 lines
367 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
|
|
./gradlew multiplatform-crypto:publishIosArm32PublicationToSnapshotRepository \
|
|
multiplatform-crypto:publishIosArm64PublicationToSnapshotRepository \
|
|
multiplatform-crypto:publishIosX64PublicationToSnapshotRepository
|
|
set +e
|