8 lines
266 B
Bash
Executable File
8 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
|
|
./gradlew multiplatform-crypto:build
|
|
./gradlew multiplatform-crypto:publishMingwX64PublicationToSnapshotRepository
|
|
set +e |