Browse Source

Added uninstall script for MacOS, updated original uninstall script, and updated README.md

Fixing-travis-yml
BinHong Lee 7 years ago
parent
commit
241da18797
3 changed files with 26 additions and 0 deletions
  1. +19
    -0
      README.md
  2. +6
    -0
      mac_uninstall.sh
  3. +1
    -0
      uninstall.sh

+ 19
- 0
README.md View File

@@ -28,9 +28,20 @@ This program is still in progress and is currently in a **NOT WORKING** conditio
```sh
$ git clone https://github.com/binhonglee/TicketingSystem.git
$ cd TicketingSystem
```

#### Ubuntu/Mint

```sh
$ ./install.sh
```

#### Mac

```sh
$ ./mac_install.sh
```

## Building and running it

```sh
@@ -40,6 +51,14 @@ $ ./bin/main

## Uninstallation

#### Ubuntu/Mint

```sh
$ ./uninstall.sh
```

#### Mac

```sh
$ ./mac_uninstall.sh
```

+ 6
- 0
mac_uninstall.sh View File

@@ -0,0 +1,6 @@
brew uninstall jsoncpp
cd ../
echo "Deleting project files"
rm -rf TicketingSystem
echo "Removing additional installed library"
rm -rf ~/anttasks.jar

+ 1
- 0
uninstall.sh View File

@@ -1,3 +1,4 @@
sudo apt-get remove --purge libjsoncpp-dev
cd ../
echo "Deleting project files"
rm -rf TicketingSystem


Loading…
Cancel
Save