diff options
author | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-07 03:25:37 +0100 |
---|---|---|
committer | Andreas Guldstrand <andreas.guldstrand@gmail.com> | 2015-12-07 03:25:37 +0100 |
commit | cc37e3a141030ff3dce74bc3fbf329ad0dd38972 (patch) | |
tree | 21303c5f3d0a25ffd90a246fb9de2891d3287080 /SBO-Lib/lib/SBO/Lib.pm | |
parent | d6b3daa566d65888ca686913ea7b2f905c87768d (diff) | |
download | sbotools2-cc37e3a141030ff3dce74bc3fbf329ad0dd38972.tar.xz |
Change newline cuddling of local overrides message
Diffstat (limited to 'SBO-Lib/lib/SBO/Lib.pm')
-rw-r--r-- | SBO-Lib/lib/SBO/Lib.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm index 97bc5a4..0f75eaa 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -1136,7 +1136,7 @@ sub user_prompt { exists $_[1] or script_error('user_prompt requires two arguments.'); my ($sbo, $location) = @_; my ($readme, $exit) = get_readme_contents($location); - if (is_local($sbo)) { print "Found $sbo in local overrides.\n\n"; $exit = 0; } + if (is_local($sbo)) { print "\nFound $sbo in local overrides.\n"; $exit = 0; } return $readme, undef, $exit if $exit; # check for user/group add commands, offer to run any found my $user_group = get_user_group($readme); |