Skip to content

Commit

Permalink
wallpapers: Properly silent command output
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftydinar committed Dec 7, 2024
1 parent 63ab9d5 commit 9ac0757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/wallpapers/wallpapers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,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
if ! command -v yq &> /dev/null; then
echo "Installing `yq`, as it's not installed & is necessary for manipulating XML files"
rpm-ostree install yq
fi
Expand Down

0 comments on commit 9ac0757

Please sign in to comment.