From b041bd6eda9af65b3b0d29af6a58a128aa70f080 Mon Sep 17 00:00:00 2001 From: Bill Zimmerman Date: Thu, 16 Jun 2016 15:16:54 +0200 Subject: [PATCH] Intial commit --- installers/raspbian.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/raspbian.sh b/installers/raspbian.sh index 5b8f7879..5c2f6063 100644 --- a/installers/raspbian.sh +++ b/installers/raspbian.sh @@ -4,13 +4,13 @@ source /tmp/raspapcommon.sh && rm -f /tmp/raspapcommon.sh function update_system_packages() { install_log "Updating sources" - sudo apt-get update || install_error "Couldn't update package list" - sudo apt-get upgrade || install_error "Couldn't upgrade packages" + sudo apt-get update || install_error "Unable to update package list" + sudo apt-get upgrade || install_error "Unable to upgrade packages" } function install_dependencies() { install_log "Installing required packages" - sudo apt-get install lighttpd php5-cgi || install_error "Couldn't install dependencies" + sudo apt-get install lighttpd php5-cgi git || install_error "Unable to install dependencies" } install_raspap