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