Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion system_files/shared/usr/share/ublue-os/just/update.just
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ update:
elif [[ "${IS_OSTREE}" == "true" ]]; then
# Without password would be nice
# https://github.com/bootc-dev/bootc/issues/409
STATUS=$(sudo bootc status --json | jq ".status")
# https://github.com/get-aurora-dev/common/issues/270
# bootc status can might prefix the output from `mount`
STATUS=$(sudo bootc status --json | sed -n '/^{/,$p' | jq ".status")
Comment thread
inffy marked this conversation as resolved.

STAGED_INCOMPAT=$(echo "${STATUS}" | jq ".staged.incompatible")
BOOTED_INCOMPAT=$(echo "${STATUS}" | jq ".booted.incompatible")
Expand Down