This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
oriment/scripts/build
2015-12-19 21:32:22 +00:00

15 lines
262 B
Bash
Executable file

#!/usr/bin/env bash
set -e
echo ">> Installing NPM Packages..."
npm install
echo ">> Installing cordova plugins..."
cordova platform add android
echo ">> Building Application source..."
npm run build
echo ">> Compiling Application..."
cordova build android