From df61e92b8bac46f2c2a8335a93f3241d8c5b5bd6 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Fri, 9 Mar 2012 16:19:10 -0500 Subject: [PATCH] reversed sense of differ when given two arguments. --- scripts/text/differ.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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. -- 2.34.1