mirror of
https://github.com/moparisthebest/mail
synced 2024-11-12 04:05:13 -05:00
19 lines
264 B
Bash
Executable File
19 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# go to root
|
|
cd `dirname $0`
|
|
cd ..
|
|
|
|
DIR=release/cca
|
|
|
|
# create
|
|
rm -rf $DIR
|
|
mkdir -p $DIR
|
|
cca create $DIR/Whiteout --link-to=dist/manifest.json
|
|
|
|
#prepare
|
|
cd $DIR/Whiteout
|
|
cca prepare
|
|
|
|
# cp signing config
|
|
cp ../../../res/ant.properties ./platforms/android/ |