-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathinstall.sh
executable file
·65 lines (61 loc) · 1.58 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
#!/bin/bash
VERSION="0.0.4"
# https://stackoverflow.com/questions/4023830/how-to-compare-two-strings-in-dot-separated-version-format-in-bash
vercomp () {
if [[ $1 == $2 ]]
then
return 0
fi
local IFS=.
local i ver1=($1) ver2=($2)
# fill empty fields in ver1 with zeros
for ((i=${#ver1[@]}; i<${#ver2[@]}; i++))
do
ver1[i]=0
done
for ((i=0; i<${#ver1[@]}; i++))
do
if [[ -z ${ver2[i]} ]]
then
# fill empty fields in ver2 with zeros
ver2[i]=0
fi
if ((10#${ver1[i]} > 10#${ver2[i]}))
then
return 1
fi
if ((10#${ver1[i]} < 10#${ver2[i]}))
then
return 2
fi
done
return 0
}
install() {
sudo -v
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
sudo curl -fsSL -o /usr/local/bin/gh-ssh-keygen https://raw.githubusercontent.com/maxam2017/gh-ssh-keygen/HEAD/gh-ssh-keygen.sh
sudo chmod +x /usr/local/bin/gh-ssh-keygen
}
gh-ssh-keygen -h &> /dev/null
if [ $? -ne 0 ];then
install
echo "✅ Installation successful!"
echo
gh-ssh-keygen -h
echo
else
CUR_VERSION=$(gh-ssh-keygen -v)
vercomp $CUR_VERSION $VERSION
if [ $? = 2 ]; then
echo -en "🔑 The current version(v$CUR_VERSION) is not the latest.\x1b[2m(Press Enter to upgrade)\x1b[0m"
read
install
echo "✅ Upgrade successful!"
echo
gh-ssh-keygen -h
echo
else
echo -e "\x1b[2mgh-ssh-keygen is installed and already up to date."
fi
fi