justfile: Remove set -x from common interactive commands

For those commands, the -x output is mostly noise.
This commit is contained in:
Timothée Ravier 2024-03-14 14:25:19 +01:00
parent 4b90deb10d
commit 8ac5599091

View file

@ -43,7 +43,7 @@ validate:
# Comps-sync, but without pulling latest
sync:
#!/bin/bash
set -euxo pipefail
set -euo pipefail
if [[ ! -d fedora-comps ]]; then
git clone https://pagure.io/fedora-comps.git
@ -56,7 +56,7 @@ sync:
# Sync the manifests with the content of the comps groups
comps-sync:
#!/bin/bash
set -euxo pipefail
set -euo pipefail
if [[ ! -d fedora-comps ]]; then
git clone https://pagure.io/fedora-comps.git
@ -74,7 +74,7 @@ comps-sync:
# Output the processed manifest for a given variant (defaults to Silverblue)
manifest variant=default_variant:
#!/bin/bash
set -euxo pipefail
set -euo pipefail
declare -A pretty_names={{pretty_names}}
variant={{variant}}