Commit b8326569 authored by simon-p-r's avatar simon-p-r Committed by Rich Salz
Browse files

fix copy and copy-if-different whitespace problem

parent 58314197
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ my @filelist;

foreach my $arg (@ARGV) {
	$arg =~ s|\\|/|g;	# compensate for bug/feature in cygwin glob...
	foreach (glob $arg)
	foreach (glob qq("$arg"))
		{
		push @filelist, $_;
		}
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ foreach $arg (@ARGV) {
		next;
		}
	$arg =~ s|\\|/|g;	# compensate for bug/feature in cygwin glob...
	foreach (glob $arg)
	foreach (glob qq("$arg"))
		{
		push @filelist, $_;
		}