Operation:Reaper Beta - fixed typo

This commit is contained in:
Scott Duensing 2025-06-20 19:13:34 -05:00
parent 83abee89b8
commit 528fe55a99

View file

@ -1,5 +1,5 @@
function installMissing() {
local $PACKAGE=$1
local PACKAGE=$1
dpkg -s ${PACKAGE} &>/dev/null; [[ $? -eq 1 ]] && apt-get -y install ${PACKAGE}
}