فهرست منبع

fix: portable shebangs

Thales Macedo Garitezi 4 سال پیش
والد
کامیت
f93f90c9ea
3فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 1 1
      bin/common_defs.sh
  2. 1 1
      bin/common_defs2.sh
  3. 1 1
      bin/common_functions.sh

+ 1 - 1
bin/common_defs.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 DEBUG="${DEBUG:-0}"
 if [ "$DEBUG" -eq 1 ]; then

+ 1 - 1
bin/common_defs2.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 ## NOTE: those are defined separately from `common_defs.sh` because
 ## they require `common_functions.sh` to be sourced prior to sourcing

+ 1 - 1
bin/common_functions.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 # Echo to stderr on errors
 echoerr() { echo "ERROR: $*" 1>&2; }