diff options
author | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:01 -0500 |
---|---|---|
committer | J Pipkin <j@dawnrazor.net> | 2012-09-09 01:37:01 -0500 |
commit | df583c1d3ed91da454808204df381e13c1aceaad (patch) | |
tree | e6cf5076923a222b062484c5dccc5cad7450e138 | |
parent | 7771a27fe05f7b0cd4a94899dbd0ff3c502334c1 (diff) | |
download | sbotools2-df583c1d3ed91da454808204df381e13c1aceaad.tar.xz |
fix for change to way make_clean takes args, remove \n at end of say line
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 65b0087..84a808e 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -666,7 +666,7 @@ sub make_clean (%) { unless ($args{SBO} && $args{SRC} && $args{VERSION}) { script_error 'make_clean requires three arguments.'; } - say "Cleaning for $args{SBO}-$args{VERSION}...\n"; + say "Cleaning for $args{SBO}-$args{VERSION}..."; my $tmpsbo = "/tmp/SBo"; remove_tree ("$tmpsbo/$args{SRC}") if -d "$tmpsbo/$args{SRC}"; remove_tree ("$tmpsbo/package-$args{SBO}") if @@ -686,7 +686,7 @@ sub make_distclean (%) { script_error 'make_distclean requires four arguments.'; } my $sbo = get_sbo_from_loc $args{LOCATION}; - make_clean $sbo, $args{SRC}, $args{VERSION}; + make_clean (SBO => $sbo, SRC => $args{SRC}, VERSION => $args{VERSION}); say "Distcleaning for $sbo-$args{VERSION}..."; # remove any distfiles for this particular SBo. my %downloads = get_sbo_downloads (LOCATION => $args{LOCATION}); |