fix(env): change the environment to be /usr/bin/env bash
This commit is contained in:
parent
dc11cf704d
commit
f15ca10acf
2
makefile
2
makefile
|
@ -13,7 +13,7 @@ LDC := ldc2
|
|||
DPARSE_DIR := libdparse
|
||||
DSYMBOL_DIR := dsymbol
|
||||
|
||||
SHELL:=/bin/bash
|
||||
SHELL:=/usr/bin/env bash
|
||||
|
||||
githash:
|
||||
@mkdir -p bin
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
if [ -z "${DC:-}" ]; then
|
||||
DC=dmd
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#! /bin/bash
|
||||
#! /usr/bin/env bash
|
||||
RED="\033[31m"
|
||||
GREEN="\033[32m"
|
||||
YELLOW="\033[33m"
|
||||
|
|
Loading…
Reference in New Issue