Skip to content

Commit f5151bf

Browse files
authoredFeb 10, 2025
chore: portable bash path (#3555)
/bin/bash does not exist on some distros (e.g. NixOS). Look it up from /usr/bin/env.
1 parent 186b4fa commit f5151bf

File tree

3 files changed

+3
-3
lines changed

3 files changed

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

33
grep "\*\*\*\* Vectorize selected computation:" $1

‎jane-street-merlin-setup.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
target_dir=$PWD
44
cd "$(dirname "$0")"

‎tools/list-globals

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
#**************************************************************************
44
#* *

0 commit comments

Comments
 (0)