From 46231a35cfdfdd7c056deaee9de6ec8846917f44 Mon Sep 17 00:00:00 2001 From: TheAssassin Date: Mon, 12 May 2014 19:58:30 +0200 Subject: [PATCH] Fixing shebang on dependency installation script. The script assumes bash isn't installed which means it shouldn't be run with it. --- tools/get_dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/get_dependencies.sh b/tools/get_dependencies.sh index 06b4645..4f37d0e 100755 --- a/tools/get_dependencies.sh +++ b/tools/get_dependencies.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh # # auto-install dependency packages using the systems package manager. # this assumes you are running as root or are using sudo