mirror of
https://github.com/appium/appium.git
synced 2026-04-26 05:18:53 -05:00
10 lines
276 B
Bash
Executable File
10 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
|
|
mkdir -p $HOME/tools/ant
|
|
cd $HOME/tools/ant
|
|
wget -P /tmp http://ftp.tc.edu.tw/pub/Apache/ant/binaries/apache-ant-1.9.3-bin.tar.gz
|
|
tar xzf /tmp/apache-ant-1.9.3-bin.tar.gz
|
|
echo 'export PATH=$HOME/tools/ant/apache-ant-1.9.3/bin:$PATH' > $HOME/tools/ant/env
|
|
|