From e3ccdc96f62d1c831bf22cadec98a8e47e2d5834 Mon Sep 17 00:00:00 2001 From: Stian Buch Larsen Date: Fri, 17 Jul 2015 08:04:36 +0200 Subject: [PATCH] FIxed update command for headphones (its git pull not git checkout) --- init/20_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init/20_update.sh b/init/20_update.sh index f4eb66c..afa762b 100755 --- a/init/20_update.sh +++ b/init/20_update.sh @@ -3,6 +3,6 @@ if [ ! -d /opt/headphones/.git ]; then git clone https://github.com/rembo10/headphones.git /opt/headphones else cd /opt/headphones - git checkout master + git pull fi chown -R abc:abc /opt/headphones