From c1cc8afadfc3336aea2cab641cd0c9663670f0b9 Mon Sep 17 00:00:00 2001 From: Iori Yoneji <fivo.11235813@gmail.com> Date: Fri, 2 Jun 2017 09:15:48 +0000 Subject: [PATCH] change shebang of shell script to make it work on both of Ubuntu or FreeBSD --- cook.sh | 2 +- setup.sh | 2 +- update-packages.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cook.sh b/cook.sh index ddc4fbaae..646ae2d61 100755 --- a/cook.sh +++ b/cook.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Configuration export TARGET=x86_64-unknown-redox diff --git a/setup.sh b/setup.sh index 795627d99..db759260b 100755 --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e echo "Downloading latest libc-artifacts" diff --git a/update-packages.sh b/update-packages.sh index 0109dd234..2374038db 100755 --- a/update-packages.sh +++ b/update-packages.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e -- GitLab