Add ruby as dependency
This commit is contained in:
parent
b49146e407
commit
8db43fc5dd
|
|
@ -1,13 +1,13 @@
|
|||
#!/bin/sh
|
||||
|
||||
gitlink="https://gitlab.cpy.re/florian/unixconf/repository/archive.zip?ref=master"
|
||||
musthaves="zsh wget git vim ssh-agent urxvt unzip"
|
||||
musthaves="zsh wget git vim ssh-agent urxvt unzip ruby"
|
||||
|
||||
for musthave in $musthaves; do
|
||||
which "$musthave" >/dev/null 2>&1
|
||||
if [ "$?" -ne 0 ]; then
|
||||
echo "You should install ${musthave}."
|
||||
echo "On Debian: apt-get install zsh wget git vim openssh-client rxvt-unicode unzip"
|
||||
echo "On Debian: apt-get install zsh wget git vim openssh-client rxvt-unicode unzip ruby"
|
||||
exit
|
||||
fi
|
||||
done
|
||||
|
|
|
|||
Loading…
Reference in New Issue