fix(env): change the environment to be /usr/bin/env bash

This commit is contained in:
imrying 2023-11-07 08:29:47 +01:00 committed by Jan Jurzitza
parent dc11cf704d
commit f15ca10acf
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ LDC := ldc2
DPARSE_DIR := libdparse
DSYMBOL_DIR := dsymbol
SHELL:=/bin/bash
SHELL:=/usr/bin/env bash
githash:
@mkdir -p bin

View File

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

View File

@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
RED="\033[31m"
GREEN="\033[32m"
YELLOW="\033[33m"