diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-10-02 19:33:38 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-10-02 19:34:26 -0700 |
| commit | 06a6ba1d6fb37602cd3dff53491f96dc59aa3d94 (patch) | |
| tree | f4d34641f33a3629ed23e081c2b01de3ab4490d8 | |
| parent | b2d4eb186e99b66051be9089f836c66a558dd995 (diff) | |
| download | rust-06a6ba1d6fb37602cd3dff53491f96dc59aa3d94.tar.gz rust-06a6ba1d6fb37602cd3dff53491f96dc59aa3d94.zip | |
test: Don't depend on /bin/bash
Our FreeBSD bots apparently don't have bash installed, and it's ok to run with sh anyway! Unblocks a snapshot
| -rwxr-xr-x | src/test/run-make/rustdoc-where/verify.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/rustdoc-where/verify.sh b/src/test/run-make/rustdoc-where/verify.sh index 5d424da02ad..1d498231018 100755 --- a/src/test/run-make/rustdoc-where/verify.sh +++ b/src/test/run-make/rustdoc-where/verify.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e # $1 is the TMPDIR |
