2020-06-13 13:08:03 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#this will hopefully download all konan dependancies that we use in the build scripts
|
2020-10-23 23:08:05 +02:00
|
|
|
./gradlew clean || exit 1
|
|
|
|
./gradlew --no-daemon multiplatform-crypto-api:build || exit 1
|
|
|
|
./gradlew --no-daemon multiplatform-crypto:build || exit 1
|
|
|
|
./gradlew --no-daemon multiplatform-crypto:publishMingwX64PublicationToSnapshotRepository || exit 1
|
|
|
|
exit 0
|