Skip to content

Commit

Permalink
fix(env): change the environment to be /usr/bin/env bash
Browse files Browse the repository at this point in the history
  • Loading branch information
imrying authored and WebFreak001 committed Nov 7, 2023
1 parent dc11cf7 commit f15ca10
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LDC := ldc2
DPARSE_DIR := libdparse
DSYMBOL_DIR := dsymbol

SHELL:=/bin/bash
SHELL:=/usr/bin/env bash

githash:
@mkdir -p bin
Expand Down
2 changes: 1 addition & 1 deletion tests/extra/tc_ufcs_all_kinds/run.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

if [ -z "${DC:-}" ]; then
DC=dmd
Expand Down
2 changes: 1 addition & 1 deletion tests/run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /bin/bash
#! /usr/bin/env bash
RED="\033[31m"
GREEN="\033[32m"
YELLOW="\033[33m"
Expand Down

0 comments on commit f15ca10

Please sign in to comment.