Skip to content

Commit 19ad16d

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 <[email protected]>
1 parent 367cd22 commit 19ad16d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function apt_pkg_install {
151151
sudo apt update
152152
APT_HAS_UPDATED=true
153153
fi
154-
sudo apt install -y "$PACKAGES"
154+
sudo apt install -y $PACKAGES
155155
check_for_error
156156
if [ -f "$UNINSTALLER" ]; then
157157
echo "apt uninstall -y $PACKAGES" >> "$UNINSTALLER"

0 commit comments

Comments
 (0)