Skip to content

Commit 6391486

Browse files
committed
install.sh: drop quotes around apt packages.
Quotes would cause a list of packages to be treated as a single package and lookup would fail. Reported-by: thirdr <ryan@pimoroni.com>
1 parent b7fad24 commit 6391486

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ function apt_pkg_install {
156156
sudo apt update
157157
APT_HAS_UPDATED=true
158158
fi
159-
sudo apt install -y "$PACKAGES"
159+
# shellcheck disable=SC2086
160+
sudo apt install -y $PACKAGES
160161
check_for_error
161162
if [ -f "$UNINSTALLER" ]; then
162163
echo "apt uninstall -y $PACKAGES" >> "$UNINSTALLER"

0 commit comments

Comments
 (0)