diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-06-11 12:45:24 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2019-06-15 16:56:42 -0400 |
commit | 3f039dca750d800d23aa3bd77f8624beeb261aaa (patch) | |
tree | 4766891479d42dcd6f7fd85177c17d9cb04f738a | |
parent | 30b285cda5458fb3080f4bd90dfa5d7c8ec2d792 (diff) | |
download | haskell-3f039dca750d800d23aa3bd77f8624beeb261aaa.tar.gz |
testsuite: Fix T8602 on musl
Musl wants hash-bangs on all executables.
-rw-r--r-- | testsuite/tests/driver/T8602/T8602.script | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuite/tests/driver/T8602/T8602.script b/testsuite/tests/driver/T8602/T8602.script index 746fb096bf..4729bd4e1e 100644 --- a/testsuite/tests/driver/T8602/T8602.script +++ b/testsuite/tests/driver/T8602/T8602.script @@ -1,3 +1,4 @@ -:! echo 'echo $4 $5 $6; exit 1' > t8602.sh +:! echo '#!/bin/sh' > t8602.sh +:! echo 'echo $4 $5 $6; exit 1' >> t8602.sh :! chmod +x t8602.sh :load A |