diff options
| author | William Casarin <jb55@jb55.com> | 2019-05-31 11:32:50 -0700 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2019-06-07 07:59:56 -0300 |
| commit | 5f22d16273ef0d42fc42303087a588efeeb6d7c1 (patch) | |
| tree | a340f242ee0c1d932c5e92697de7fc924db7ad79 /performance-test/M00-new.sh | |
| parent | 3d9edf4fb16dbc2ad3db325c62e1d4ff8887fcac (diff) | |
perf-tests: #!/bin/bash -> #!/usr/bin/env bash
I couldn't run the performance tests on my machines due to a hardcoded
bash path. Use env for finding bash in weird systems like NixOS.
Signed-off-by: William Casarin <jb55@jb55.com>
Diffstat (limited to 'performance-test/M00-new.sh')
| -rwxr-xr-x | performance-test/M00-new.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/performance-test/M00-new.sh b/performance-test/M00-new.sh index aab36e69..5858ab33 100755 --- a/performance-test/M00-new.sh +++ b/performance-test/M00-new.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash test_description='notmuch new' |
