-
Notifications
You must be signed in to change notification settings - Fork 45
/
install.sh
executable file
·90 lines (80 loc) · 2.32 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env zsh
# WARP
# ====
# Installation script
#
# @github.com/mfaerevaag/wd
# variables
BIN=$HOME/bin
DIR=$BIN/wd
REPO=https://github.com/mfaerevaag/wd.git
ZSHRC=$HOME/.zshrc
MANLOC=/usr/share/man/man1
# make temporary log file
LOG="$(mktemp -t wd_install.XXXXXXXXXX)" || exit 1
exec 2> $LOG
# check if already exists
if [ -e $DIR ]
then
echo "Directory '$DIR' already exists. Backup, and try again..."
exit 1
fi
# lazy mkdir
if [ ! -d $BIN ]
then
echo "Making a bin directory in your home folder..."
mkdir $BIN
fi
# clone
if git clone $REPO $DIR
then
# add alias
echo "Adding wd function to your ~/.zshrc..."
echo "wd() {" >> $ZSHRC
echo " . $DIR/wd.sh" >> $ZSHRC
echo "}" >> $ZSHRC
# TODO: we cannot process user input when piping the
# script to sh, see https://github.com/mfaerevaag/wd/issues/27
# install man page
# while true
# do
# echo "Would you like to install the man page? (requires root access) (Y/n)"
# read -r answer
# case "$answer" in
# Y|y|YES|yes|Yes )
# echo "Installing man page to ${MANLOC}/wd.1"
# sudo mkdir -p ${MANLOC}
# sudo cp -f ${DIR}/wd.1 ${MANLOC}/wd.1
# sudo chmod 644 ${MANLOC}/wd.1
# break
# ;;
# N|n|NO|no|No )
# echo "If you change your mind, see README for instructions"
# break
# ;;
# * )
# echo "Please provide a valid answer (y or n)"
# ;;
# esac
# done
# remove log
rm -rf $LOG
# finish
echo "\033[96m"' _ '"\033[m"
echo "\033[96m"' | |'"\033[m"
echo "\033[96m"' __ ____| |'"\033[m"
echo "\033[96m"' \ \ /\ / / _` |'"\033[m"
echo "\033[96m"' \ V V / (_| |'"\033[m"
echo "\033[96m"' \_/\_/ \__,_|'"\033[m"
echo "\033[96m"' '"\033[m"
echo "\033[96m... is now installed. \033[m"
echo "Remember to open new zsh to load wd."
echo "For more information on usage, see README. Enjoy!"
else
# ops
echo "\033[91m \nOps! An error occured: \033[m"
cat $LOG
echo "\nIt would be great of you to file an issue"
echo "at GitHub so I can fix it asap. Sorry!"
echo "Log file: $LOG"
fi