Skip to content
Snippets Groups Projects
Verified Commit 86dfb690 authored by Oliver Smith's avatar Oliver Smith Committed by Clayton Craft
Browse files

systemd/systemd-services: make shellcheck happy (MR 5070)

Fix for:
  In systemd-services.trigger line 14:
      systemctl $cmd $service
                ^--^ SC2086 (info): Double quote to prevent globbing and word splitting.
                     ^------^ SC2086 (info): Double quote to prevent globbing and word splitting.
parent 1ceaf81b
Branches
No related tags found
1 merge request!5859Draft: ElementaryOS pantheon desktop w/ systemd
......@@ -7,7 +7,7 @@
pkgname=systemd-services
# 1. bump pkgver
pkgver=5
pkgrel=0
pkgrel=1
pkgdesc="Systemd service files"
url="https://postmarketos.org"
arch="noarch"
......
......@@ -11,7 +11,7 @@ fi
while read -r cmd service; do
echo "=> $cmd $service"
systemctl $cmd $service
systemctl "$cmd" "$service"
done < /run/rc-update.failed
rm -f /run/rc-update.failed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment