2020-06-13 13:08:03 +02:00
|
|
|
set -e
|
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
2020-10-23 11:27:26 +02:00
|
|
|
./gradlew clean
|
2020-06-13 13:08:03 +02:00
|
|
|
./gradlew multiplatform-crypto-api:build
|
|
|
|
./gradlew multiplatform-crypto:build
|
2020-06-13 18:52:06 +02:00
|
|
|
./gradlew multiplatform-crypto:publishMingwX64PublicationToSnapshotRepository
|
2020-10-23 11:27:26 +02:00
|
|
|
set +e
|