fix android ci output path name so that it does not conflict

This commit is contained in:
Jeff Becker 2021-06-19 08:30:46 -04:00
parent 300638163b
commit 0a1cc0fc90
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
2 changed files with 2 additions and 3 deletions

View File

@ -11,7 +11,7 @@ test x$NDK = x && exit 1
echo "building abis: $build_abis"
root="$(readlink -f $(dirname $0)/../)"
out=$root/lokinet-android-$(git describe)
out=$root/lokinet-jni-$(git describe)
mkdir -p $out
mkdir -p $root/build-android
cd $root/build-android

View File

@ -41,8 +41,7 @@ if [ -e build-windows ]; then
zip -r "$archive" "$base"
elif [ -e build-android ] ; then
# android af ngl
archive="$base.tar.xz"
cp -av lokinet-android-* "$base"
cp -av lokinet-jni-* "$base"
archive="$base.tar.xz"
tar cJvf "$archive" "$base"
else