justfile: Remove set -x from common interactive commands
For those commands, the -x output is mostly noise.
This commit is contained in:
parent
4b90deb10d
commit
8ac5599091
1 changed files with 3 additions and 3 deletions
6
justfile
6
justfile
|
@ -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}}
|
||||
|
|
Loading…
Reference in a new issue