Skip to content

Commit 2f252a4

Browse files
use usr/bin/env bash since it's more general then /bin/bash
1 parent 618cebb commit 2f252a4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/common

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
# Finds in dotty build file a line containing PATTERN
44
# returns last "" escaped string in this line

bin/dotc

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
# This script is used for running compiler standalone(outside of sbt)
33
# it's based on miniboxing script and paulp's launcher script
44

bin/dotr

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
# Try to autodetect real location of the script
44
DOTTY_ROOT="$(readlink "$0")" # relative, symbolic links resolved

0 commit comments

Comments
 (0)