mirror of
https://github.com/silkimen/cordova-plugin-advanced-http.git
synced 2026-01-31 00:00:03 +08:00
13 lines
253 B
Bash
Executable File
13 lines
253 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/..
|
|
CDV=$ROOT/node_modules/.bin/cordova
|
|
|
|
rm -rf $ROOT/temp
|
|
$CDV create $ROOT/temp
|
|
cd $ROOT/temp
|
|
$CDV platforms add android
|
|
$CDV platforms add ios
|
|
$CDV plugins add $ROOT
|