Blame view
travis-ppa.sh
107 Bytes
|
8a10e6310
|
1 2 3 4 5 |
#! /bin/sh
if [ $PPA != 'none' ];then
sudo apt-add-repository -y $PPA;
sudo apt-get update -qq;
fi
|
|
8a10e6310
|
1 2 3 4 5 |
#! /bin/sh
if [ $PPA != 'none' ];then
sudo apt-add-repository -y $PPA;
sudo apt-get update -qq;
fi
|