mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
10 lines
211 B
Bash
Executable file
10 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ANDROID_SCRIPTS_DIR=`pwd`/android
|
|
if [ ! -d $ANDROID_SCRIPTS_DIR ]; then
|
|
echo "no android scripts directory found at ${ANDROID_SCRIPTS_DIR}"
|
|
exit 0
|
|
fi
|
|
|
|
cd $ANDROID_SCRIPTS_DIR
|
|
./manifest.sh
|