From 40600391b915dd0ebddefa7555aca283126c963f Mon Sep 17 00:00:00 2001 From: fiftydinar <65243233+fiftydinar@users.noreply.github.com> Date: Sat, 7 Dec 2024 19:18:38 +0100 Subject: [PATCH] wallpapers: Fix accidental execution of `yq` when not installed --- modules/wallpapers/wallpapers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wallpapers/wallpapers.sh b/modules/wallpapers/wallpapers.sh index 7490146c..0bd6f1b8 100644 --- a/modules/wallpapers/wallpapers.sh +++ b/modules/wallpapers/wallpapers.sh @@ -5,7 +5,7 @@ set -euo pipefail # Install `yq` dependency if it's not installed (needed for manipulation of XML files) if ! command -v yq &> /dev/null; then - echo "Installing `yq`, as it's not installed & is necessary for manipulating XML files" + echo "Installing 'yq', as it's not installed & is necessary for manipulating XML files" rpm-ostree install yq fi