diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/packages.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/packages.sh b/functions/packages.sh index b9fa28611..83d15e09e 100755 --- a/functions/packages.sh +++ b/functions/packages.sh @@ -63,7 +63,7 @@ Install_packages () unset _LB_PACKAGES # Can clear this now } -Remove_package () +Remove_packages () { if [ "${LB_BUILD_WITH_CHROOT}" != "true" ]; then return @@ -102,7 +102,7 @@ Remove_package () Cleanup_temp_packages () { if [ -e "$(Installed_tmp_packages_file)" ]; then - Remove_package + Remove_packages fi } |