Skip to content

Commit fb1dbba

Browse files
authored
Merge pull request #1578 from MasseGuillaume/topic/use-env
use usr/bin/env bash since it's more general then /bin/bash
2 parents 618cebb + 2f252a4 commit fb1dbba

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)