diff options
author | Ben Gamari <bgamari.foss@gmail.com> | 2017-09-04 08:00:48 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-09-05 07:20:00 -0400 |
commit | 1300afaa6d0ab20d7891b2f42d0f02268582692b (patch) | |
tree | 95d4cc702fdd6f67ee066640e6bc5795e7b714be /mk | |
parent | b9ac9e05b29c58efc93b78bf7fca43d61ead50c7 (diff) | |
download | haskell-1300afaa6d0ab20d7891b2f42d0f02268582692b.tar.gz |
get-win32-tarballs: Use bash, not sh
The script appears to use the local keyword, which I'm fairly certain is
a feature of bash and not sh.
Reviewers: Phyx, austin
Reviewed By: Phyx
Subscribers: rwbarton, thomie
Differential Revision: https://phabricator.haskell.org/D3906
Diffstat (limited to 'mk')
-rwxr-xr-x | mk/get-win32-tarballs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/get-win32-tarballs.sh b/mk/get-win32-tarballs.sh index 7f3b544904..75889ee3b1 100755 --- a/mk/get-win32-tarballs.sh +++ b/mk/get-win32-tarballs.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash tarball_dir='ghc-tarballs' missing_files=0 |