reversed sense of differ when given two arguments.
authorChris Koeritz <fred@gruntose.com>
Fri, 9 Mar 2012 21:19:10 +0000 (16:19 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 9 Mar 2012 21:19:10 +0000 (16:19 -0500)
scripts/text/differ.pl

index cd1c3353ea50f47d4ef47ef1c4db007939019cd4..185414062f616ee787fedc58678260e21c140a22 100644 (file)
@@ -35,8 +35,9 @@ if ($#ARGV < 0) {
 local($destination) = $ARGV[0];
 local($source) = ".";
 if ($#ARGV > 0) {
-  # get the location they provided.
-  $source = $ARGV[1];
+  # use both the locations they provided.
+  $source = $ARGV[0];
+  $destination = $ARGV[1];
 }
 
 # make the names a little more manipulable.