From 70b7b343206446fa248f2f33614afe7968536085 Mon Sep 17 00:00:00 2001 From: Jacob Pipkin Date: Fri, 21 Sep 2012 05:40:57 -0500 Subject: fix some quoting inconsistencies --- sboclean | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sboclean b/sboclean index f98e61f..60d114c 100755 --- a/sboclean +++ b/sboclean @@ -57,7 +57,7 @@ unless ($clean_dist || $clean_work) { sub remove_stuff ($) { exists $_[0] or script_error 'remove_stuff requires an argument'; - -d $_[0] or say "Nothing to do." and return 1; + -d $_[0] or say 'Nothing to do.' and return 1; my $dir = shift; opendir (my $dh, $dir); FIRST: while (my $ls = readdir $dh) { @@ -72,7 +72,7 @@ sub remove_stuff ($) { } } -remove_stuff $config{SBO_HOME} . '/distfiles' if $clean_dist; +remove_stuff $config{SBO_HOME} .'/distfiles' if $clean_dist; remove_stuff '/tmp/SBo' if $clean_work; exit 0; -- cgit v1.2.3