mirror of
https://github.com/appium/appium.git
synced 2026-02-05 09:09:01 -06:00
10 lines
189 B
Bash
Executable File
10 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
if [[ $CI_CONFIG == 'build' ]]; then
|
|
./ci/install-ant.sh
|
|
./ci/install-maven.sh
|
|
./ci/install-android.sh
|
|
npm install -g cordova
|
|
sudo grunt authorize
|
|
fi
|