avoid interpolation of backslashed chars in windows paths
[p5sagit/local-lib.git] / t / taint-mode.t
index cc7233c..d4f773a 100644 (file)
@@ -26,7 +26,7 @@ print $fh <<EOM;
 #!/usr/bin/perl -T
 use strict; use warnings;
 use local::lib '$dir1';
-my \$dir1 = "$dir1";
+my \$dir1 = '$dir1';
 if (grep { m{^\\Q\$dir1\\E/} } \@INC) {
   exit 0;
 }