forked from nvbn/thefuck
-
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.
nvbn#501: Deprecate installation script
- Loading branch information
Showing
3 changed files
with
10 additions
and
92 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,61 +1,4 @@ | ||
#!/bin/sh | ||
|
||
should_add_alias () { | ||
[ -f $1 ] && ! grep -q thefuck $1 | ||
} | ||
|
||
installed () { | ||
hash $1 2>/dev/null | ||
} | ||
|
||
install_thefuck () { | ||
# Install OS dependencies: | ||
if installed apt-get; then | ||
# Debian/Ubuntu: | ||
sudo apt-get update -yy | ||
sudo apt-get install -yy python-pip python-dev command-not-found python-gdbm | ||
|
||
if [ -n "$(apt-cache search python-commandnotfound)" ]; then | ||
# In case of different python versions: | ||
sudo apt-get install -yy python-commandnotfound | ||
fi | ||
else | ||
if installed brew; then | ||
# OS X: | ||
brew update | ||
brew install python | ||
else | ||
# Generic way: | ||
wget https://bootstrap.pypa.io/get-pip.py | ||
sudo python get-pip.py | ||
rm get-pip.py | ||
fi | ||
fi | ||
|
||
# thefuck requires fresh versions of setuptools and pip: | ||
sudo pip install -U pip setuptools | ||
sudo pip install -U thefuck | ||
|
||
# Setup aliases: | ||
if should_add_alias ~/.bashrc; then | ||
echo 'eval $(thefuck --alias)' >> ~/.bashrc | ||
fi | ||
|
||
if should_add_alias ~/.bash_profile; then | ||
echo 'eval $(thefuck --alias)' >> ~/.bash_profile | ||
fi | ||
|
||
if should_add_alias ~/.zshrc; then | ||
echo 'eval $(thefuck --alias)' >> ~/.zshrc | ||
fi | ||
|
||
if should_add_alias ~/.config/fish/config.fish; then | ||
thefuck --alias >> ~/.config/fish/config.fish | ||
fi | ||
|
||
if should_add_alias ~/.tcshrc; then | ||
echo 'eval `thefuck --alias`' >> ~/.tcshrc | ||
fi | ||
} | ||
|
||
install_thefuck | ||
echo "Installation script is deprecated!" | ||
echo "For installation instruction please visit https://github.com/nvbn/thefuck" |
This file was deleted.
Oops, something went wrong.