diff options
author | Jacob Pipkin <j@dawnrazor.net> | 2012-08-30 10:31:07 -0500 |
---|---|---|
committer | Jacob Pipkin <j@dawnrazor.net> | 2012-08-30 10:31:07 -0500 |
commit | 9f634b3b00ddd90c8fb1f027a018243b7c5d3697 (patch) | |
tree | 0944b622873430918822a3af998d7c5d0c72ba83 | |
parent | 16c8699be7a211fae09887f2ddb9778ae21a4307 (diff) | |
download | sbotools2-9f634b3b00ddd90c8fb1f027a018243b7c5d3697.tar.xz |
bug fix to previous
-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 f600418..bd00c9a 100644 --- a/SBO-Lib/lib/SBO/Lib.pm +++ b/SBO-Lib/lib/SBO/Lib.pm @@ -169,7 +169,7 @@ sub update_tree () { # if the SLACKBUILDS.TXT is not in $config{SBO_HOME}, we assume the tree has # not been populated there; prompt the user to automagickally pull the tree. sub slackbuilds_or_fetch () { - unless (check_slackbuilds_txt) { + unless (chk_slackbuilds_txt) { say 'It looks like you haven\'t run "sbosnap fetch" yet.'; print "Would you like me to do this now? [y] "; <STDIN> =~ /^[Yy\n]/ ? fetch_tree () : |