diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-09-01 12:05:47 -0500 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-09-01 12:05:47 -0500 |
commit | 72afb8322ace13da8b3598ac9e5a543382b207d6 (patch) | |
tree | c3bbd858329fae3d658e1b37fe0ca4f527a392c0 /SBO-Lib/lib/SBO/Lib.pm | |
parent | 33407165134a76e34c763898ef461ee6fd979f97 (diff) | |
download | sbotools2-72afb8322ace13da8b3598ac9e5a543382b207d6.tar.xz |
almost there.
Diffstat (limited to 'SBO-Lib/lib/SBO/Lib.pm')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index e76fa8d..6d2916e 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -51,6 +51,7 @@ use File::Path qw(make_path remove_tree); use Fcntl; use File::Temp qw(tempdir tempfile); use Fcntl qw(F_SETFD F_GETFD); +use feature 'say'; our $tempdir = tempdir (CLEANUP => 1); @@ -660,7 +661,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}..."; + say "Cleaning for $args{SBO}-$args{VERSION}...\n"; my $tmpsbo = "/tmp/SBo"; remove_tree ("$tmpsbo/$args{SRC}") if -d "$tmpsbo/$args{SRC}"; remove_tree ("$tmpsbo/package-$args{SBO}") if |