diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-08-23 06:14:24 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-08-23 06:14:27 -0500 |
commit | 80ac75f774ef008f769d75db6738544c7a5fc8c4 (patch) | |
tree | 493c7b7da2e6c5569f7cad09f737e605362a3253 /sync-all | |
parent | d0ed42fa732b38a11280b3740702b9272983340c (diff) | |
download | haskell-80ac75f774ef008f769d75db6738544c7a5fc8c4.tar.gz |
Fix windows detection in ./sync-all.
We weren't considering 'msys' for the $OSNAME.
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'sync-all')
-rwxr-xr-x | sync-all | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -782,7 +782,7 @@ sub main { $tags{"-"} = 1; $tags{"dph"} = 1; - if ($OSNAME =~ /^(MSWin32|Cygwin)$/) { + if ($OSNAME =~ /^(MSWin32|Cygwin|msys)$/) { $tags{"windows"} = 1; } |