Skip to content

Commit

Permalink
Fix install script
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaveAirykson committed Jul 11, 2019
1 parent 1871a57 commit 56cb5d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ rm -rf ~/pepe

## Changelog

### v1.1.1
- Fixe issue with install script using wrong parameters for verbose option.

### v1.1.0
- Changed install routine so no git clone is needed and the pepe folder will be placed in users home folder.
- Updated README.md to clear up installation logic.
Expand Down
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
echo -e "Installing pepe in your home folder...\n"

mkdir -v "$HOME"/pepe
cp --verbose pepe "$HOME"/pepe/
cp --verbose -R commands "$HOME"/pepe/
cp -v pepe "$HOME"/pepe/
cp -v -R commands "$HOME"/pepe/

ln -sv "$HOME/pepe/pepe" "$HOME/bin/pepe"

echo -e "\npepe successfully installed!\n"

echo "You can now delete this directory."
echo "You can now delete this directory.\n"

0 comments on commit 56cb5d4

Please sign in to comment.