summaryrefslogtreecommitdiff
path: root/functions/packages.sh
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-05-05 16:45:57 +0100
committerLyndon Brown <jnqnfe@gmail.com>2020-05-05 19:55:28 +0100
commit18eefdd6f38631e15e56a2bd7a25bba50b05acfa (patch)
tree1dd7a7533a547b8e2e5b319c3f2114b1f81574a8 /functions/packages.sh
parent919a464b64b4bda52a56b8732ea5ef7727649cf0 (diff)
downloadvyos-live-build-18eefdd6f38631e15e56a2bd7a25bba50b05acfa.tar.gz
vyos-live-build-18eefdd6f38631e15e56a2bd7a25bba50b05acfa.zip
s/Remove_package/Remove_packages/
it removes one or more, so should be plural for clarity Gbp-Dch: Short
Diffstat (limited to 'functions/packages.sh')
-rwxr-xr-xfunctions/packages.sh4
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
}