diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-26 09:10:56 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 09:10:56 +0200 |
commit | 52f78c734724e3670a15630f747cbe37078ad62a (patch) | |
tree | 9d7ad43d7fd1b44a891e8c69c60853287647ed70 /python/Makefile | |
parent | Add ~/.config/background (diff) | |
download | dotfiles-52f78c734724e3670a15630f747cbe37078ad62a.tar.gz dotfiles-52f78c734724e3670a15630f747cbe37078ad62a.tar.bz2 dotfiles-52f78c734724e3670a15630f747cbe37078ad62a.tar.xz |
Alias python to python3 if python is python2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/Makefile b/python/Makefile index 271827a..1befb29 100644 --- a/python/Makefile +++ b/python/Makefile @@ -8,11 +8,18 @@ install: mkdir -p -- ~/.config/profile.d test ! -d ~/.config/profile.d/python ln -sf -- ~/.dotfiles/python/user-profile ~/.config/profile.d/python + if test "$$(python --version 2>&1 | cut -d ' ' -f 2 | cut -d . -f 1)" = 2; then \ + mkdir -p -- ~/.config/bash/aliases.d && \ + test ! -d ~/.config/bash/aliases.d/python && \ + ln -sf -- ~/.dotfiles/python/bash-aliases ~/.config/bash/aliases.d/python; \ + fi uninstall: -unlink -- ~/.config/profile.d/python -rmdir -- ~/.config/profile.d -unlink -- ~/.var/cache/python_history -unlink -- ~/.python_history + -unlink -- ~/.config/bash/aliases.d/python + -rmdir -- ~/.config/bash/aliases.d .PHONY: install uninstall |