This website works better with JavaScript.
Home
Explore
Help
Sign In
binhong
/
TicketingSystem
mirror of
https://github.com/binhonglee/TicketingSystem
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Replaced kernel with uname
Fixing-travis-yml
BinHong Lee
7 years ago
parent
4beca75a97
commit
5c675d877d
2 changed files
with
4 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
install.sh
+3
-3
uninstall.sh
+ 1
- 1
install.sh
View File
@@ -1,4 +1,4 @@
if [ $
kernel
== "Darwin" ]; then
if [ $
(uname)
== "Darwin" ]; then
brew install ant
brew install jsoncpp
else
+ 3
- 3
uninstall.sh
View File
@@ -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 ../
Write
Preview
Loading…
Cancel
Save