mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 15:12:51 +08:00
24 lines
477 B
Bash
Executable File
24 lines
477 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
VERSION=$(cat ./VERSION)
|
|
|
|
# get the latest mobile-spec
|
|
git clone git@github.com:phonegap/mobile-spec.git
|
|
|
|
# clobber test if it exists
|
|
if [ -e ./test ]
|
|
then
|
|
rm -rf ./test
|
|
fi
|
|
|
|
# generate a working proj
|
|
./bin/create ./test com.phonegap.test PhoneGapTest
|
|
|
|
# kill the default app and replace it w/ mobile-spec
|
|
rm -rf ./test/assets/www
|
|
mv ./mobile-spec ./test/assets/www
|
|
|
|
# build it, launch it and start logging on stdout
|
|
cd ./test && ./bin/debug && ./bin/log
|