From 111bf59e8ee454973df17ce9686566ee0d9cd03a Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 13 Feb 2017 15:18:45 +0100 Subject: build: Make install scripts OS agnostic This makes the install scripts OS agnostic, since env is used to call bash, which just uses looks for bash in the path. --- compile_debug.sh | 2 +- compile_release.sh | 2 +- install_debug.sh | 2 +- install_release.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/compile_debug.sh b/compile_debug.sh index 3ea1e039..3ecab3c0 100755 --- a/compile_debug.sh +++ b/compile_debug.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ME=compile_debug diff --git a/compile_release.sh b/compile_release.sh index 58a16e52..e7e65ecc 100755 --- a/compile_release.sh +++ b/compile_release.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ME=compile_release diff --git a/install_debug.sh b/install_debug.sh index dacb7cd2..8f39be00 100755 --- a/install_debug.sh +++ b/install_debug.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash BUILDDIR=build DEBUGDIR=debug diff --git a/install_release.sh b/install_release.sh index f5d08bb5..5bd56a42 100755 --- a/install_release.sh +++ b/install_release.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash ME=install_release -- cgit v1.2.3