9 lines
127 B
Bash
Executable file
9 lines
127 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo ">> Compile application..."
|
|
cordova build android
|
|
|
|
echo ">> Lint JavaScript..."
|
|
npm run lint
|