diff options
| author | MikaelUrankar <49529234+MikaelUrankar@users.noreply.github.com> | 2022-04-14 14:18:13 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-14 14:18:13 +0200 |
| commit | 83d470d91c15d0cb5890705291e6ee9e5be8a842 (patch) | |
| tree | 812a2feea6b90a72ef408bba4f66f587d66ef0cf /scripts/test_rustc_tests.sh | |
| parent | 557a09f6b543ec36597d2dfdf1d26262a3a4b235 (diff) | |
| download | rust-83d470d91c15d0cb5890705291e6ee9e5be8a842.tar.gz rust-83d470d91c15d0cb5890705291e6ee9e5be8a842.zip | |
Don't assume /bin/bash is available on every system. (#1223)
Co-authored-by: MikaelUrankar <mikael.urankar@gmail.com>
Diffstat (limited to 'scripts/test_rustc_tests.sh')
| -rwxr-xr-x | scripts/test_rustc_tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test_rustc_tests.sh b/scripts/test_rustc_tests.sh index 7e539209c39..4cf24c02235 100755 --- a/scripts/test_rustc_tests.sh +++ b/scripts/test_rustc_tests.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -e cd $(dirname "$0")/../ |
