Skip to content

Commit 31e2f82

Browse files
committed
replace /bin/bash with /usr/bin/env bash
1 parent 48ddec4 commit 31e2f82

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SHELL := /bin/bash
1+
SHELL := /usr/bin/env bash
22

33
.SUFFIXES: .bin .prg
44
.PRECIOUS: %.ngd %.ncd %.twx vivado/%.xpr bin/%.bit bin/%.mcs bin/%.M65 bin/%.BIN

src/gitversion.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
shorten_name () {
44
name=$1

src/tests/regression-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
SCRIPT="$(readlink --canonicalize-existing "$0")"
44
SCRIPTPATH="$(dirname "${SCRIPT}")"

src/tests/runTests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# very simple test runner: find all *.prg files in the current directory
44
# and run them.

0 commit comments

Comments
 (0)