This repository has been archived by the owner on Jul 30, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating readme with installation instructions and updating setup script
- Loading branch information
Nicholas Omer Chiasson
committed
Feb 19, 2017
1 parent
0af5c44
commit 3622d1e
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
#!/usr/bin/env sh | ||
|
||
sudo curl https://raw.githubusercontent.com/nicholaschiasson/car/master/src/car.sh -o /usr/local/bin/car | ||
sudo chmod ugo+x /usr/local/bin/car | ||
echo "Downloading car and intalling into /usr/local/bin/" | ||
sudo curl -sSf https://raw.githubusercontent.com/nicholaschiasson/car/master/src/car.sh -o /usr/local/bin/car || (>&2 echo "Download failed." && exit 1) | ||
sudo chmod ugo+x /usr/local/bin/car || (>&2 echo "Installation failed." && exit 1) | ||
echo "Installation complete!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters