From: Chris Koeritz Date: Fri, 9 Mar 2012 21:19:10 +0000 (-0500) Subject: reversed sense of differ when given two arguments. X-Git-Tag: 2.140.90~1491 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=df61e92b8bac46f2c2a8335a93f3241d8c5b5bd6;p=feisty_meow.git reversed sense of differ when given two arguments. --- diff --git a/scripts/text/differ.pl b/scripts/text/differ.pl index cd1c3353..18541406 100644 --- a/scripts/text/differ.pl +++ b/scripts/text/differ.pl @@ -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.