select the appropiate system null hole
Christian Walde [Sun, 15 Jul 2012 12:42:31 +0000 (14:42 +0200)]
lib/Distar.pm

index 2d02338..70128c4 100644 (file)
@@ -59,8 +59,9 @@ sub run_preflight {
   system("git fetch");
 
   my $make = $Config{make};
+  my $null = $^O ne 'MSWin32' ? "/dev/null" : "NUL";
 
-  for (scalar `"$make" manifest 2>&1 >/dev/null`) {
+  for (scalar `"$make" manifest 2>&1 >$null`) {
     $_ && die "$make manifest changed:\n$_ Go check it and retry";
   }