Procházet zdrojové kódy

Replaced kernel with uname

Fixing-travis-yml
BinHong Lee před 7 roky
rodič
revize
5c675d877d
2 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. +1
    -1
      install.sh
  2. +3
    -3
      uninstall.sh

+ 1
- 1
install.sh Zobrazit soubor

@@ -1,4 +1,4 @@
if [ $kernel == "Darwin" ]; then
if [ $(uname) == "Darwin" ]; then
brew install ant
brew install jsoncpp
else


+ 3
- 3
uninstall.sh Zobrazit soubor

@@ -1,8 +1,8 @@
if [ $kernel == "Darwin" ]; then
sudo apt-get remove --purge libjsoncpp-dev
else
if [ $(uname) == "Darwin" ]; then
brew uninstall jsoncpp
brew uninstall ant
else
sudo apt-get remove --purge libjsoncpp-dev
fi

cd ../


Načítá se…
Zrušit
Uložit