9 lines
129 B
Bash
9 lines
129 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if ! command -v jq > /dev/null; then
|
|
rpm-ostree install jq
|
|
fi
|
|
|
|
ostree container commit
|