7 lines
229 B
Bash
Executable File
7 lines
229 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:publishMacosX64PublicationToSnapshotRepository
|
|
set +e
|