Skip to content

Commit

Permalink
fix: Remove cat (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese authored Jan 13, 2024
1 parent 6422aec commit 6d3812d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fi

[[ "$DEBUG" == [Yy1]* ]] && info "$VERS" && echo "Arguments: $ARGS" && echo
{ qemu-system-x86_64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :
(( rc != 0 )) && error "$(cat "$QEMU_LOG")" && exit 15
(( rc != 0 )) && error "$(<"$QEMU_LOG")" && exit 15

terminal
tail -fn +0 "$QEMU_LOG" 2>/dev/null &
Expand Down

0 comments on commit 6d3812d

Please sign in to comment.