Skip to content

Commit

Permalink
install.sh: drop quotes around apt packages.
Browse files Browse the repository at this point in the history
Quotes would cause a list of packages to be treated as a single package
and lookup would fail.

Reported-by: thirdr <[email protected]>
  • Loading branch information
Gadgetoid committed Apr 17, 2024
1 parent 367cd22 commit 19ad16d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function apt_pkg_install {
sudo apt update
APT_HAS_UPDATED=true
fi
sudo apt install -y "$PACKAGES"
sudo apt install -y $PACKAGES
check_for_error
if [ -f "$UNINSTALLER" ]; then
echo "apt uninstall -y $PACKAGES" >> "$UNINSTALLER"
Expand Down

0 comments on commit 19ad16d

Please sign in to comment.