From 8db43fc5dd264dbc81ffe9a64a3c9f290970c21c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Sun, 17 Apr 2016 21:48:31 +0200 Subject: [PATCH] Add ruby as dependency --- unixconf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unixconf.sh b/unixconf.sh index 2e07dbd..9e3878f 100755 --- a/unixconf.sh +++ b/unixconf.sh @@ -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