mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-02-28 22:13:30 +00:00
* chore(Containerfile): More bulletproof config-manager setopt * chore(Containerfile): Add missing negativo disabling
6 lines
130 B
Bash
Executable File
6 lines
130 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Retrieve a list of repos ids by name or id
|
|
set -euo pipefail
|
|
|
|
dnf5 repo info --all --json "$@" | jq -r '.[].id'
|