summaryrefslogtreecommitdiff
path: root/sync-all
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2013-08-23 06:14:24 -0500
committerAustin Seipp <aseipp@pobox.com>2013-08-23 06:14:27 -0500
commit80ac75f774ef008f769d75db6738544c7a5fc8c4 (patch)
tree493c7b7da2e6c5569f7cad09f737e605362a3253 /sync-all
parentd0ed42fa732b38a11280b3740702b9272983340c (diff)
downloadhaskell-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-xsync-all2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync-all b/sync-all
index 03e9be7052..977aed26b7 100755
--- a/sync-all
+++ b/sync-all
@@ -782,7 +782,7 @@ sub main {
$tags{"-"} = 1;
$tags{"dph"} = 1;
- if ($OSNAME =~ /^(MSWin32|Cygwin)$/) {
+ if ($OSNAME =~ /^(MSWin32|Cygwin|msys)$/) {
$tags{"windows"} = 1;
}