From 779ff00fc19e069773cdd770b22f2dc3bb904123 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 29 Feb 2012 15:44:53 -0500 Subject: [PATCH] how did that error not get seen earlier? --- scripts/files/zapdirs.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/files/zapdirs.pl b/scripts/files/zapdirs.pl index 9ca8cb39..d69da8a0 100644 --- a/scripts/files/zapdirs.pl +++ b/scripts/files/zapdirs.pl @@ -23,10 +23,10 @@ require "zap_the_dir.pl"; $DEV_NULL = "> /dev/null 2> /dev/null"; #hmmm: move this to a useful location in a perl library. -if ($OS eq "UNIX") { +if ($OS == "UNIX") { $FIND_ENDING = "';'"; -} elsif ( ($OS eq "DOS") || ($OS eq "Windows_95") - || ($OS eq "Windows_98") || ($OS eq "Windows_NT") ) { +} elsif ( ($OS == "DOS") || ($OS == "Windows_95") + || ($OS == "Windows_98") || ($OS == "Windows_NT") ) { $FIND_ENDING = "';'"; } else { die "The Operating System variable (OS) is not set.\n"; -- 2.34.1