Skip to content
This repository was archived by the owner on Nov 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
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: 2 additions & 2 deletions command/base
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ QEMU_GIT_COMMIT="49ee115552"
# reset to blank when QEMU_REV/GIT_COMMIT bumps, otherwise begin count from 1
QEMU_REV_ZIG_SERIAL=

if [ -n $QEMU_GIT_COMMIT ]; then
if [ -n "$QEMU_GIT_COMMIT" ]; then
QEMU_SRC_BASENAME="${QEMU_NAME}-${QEMU_REV}-${QEMU_GIT_COMMIT}"
else
QEMU_SRC_BASENAME="${QEMU_NAME}-${QEMU_REV}"
Expand All @@ -34,6 +34,6 @@ WORKDIR() {
}

RUN() {
echo "run: $@"
echo "run: $*"
"$@"
}
2 changes: 1 addition & 1 deletion command/extract
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e

. $(dirname $0)/base

if [ -n $QEMU_GIT_COMMIT ]; then
if [ -n "$QEMU_GIT_COMMIT" ]; then
exit 0
fi

Expand Down
2 changes: 1 addition & 1 deletion command/fetch
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -e

WORKDIR /work/src

if [ -n $QEMU_GIT_COMMIT ]; then
if [ -n "$QEMU_GIT_COMMIT" ]; then
git clone --no-checkout https://github.com/qemu/qemu.git $QEMU_SRC_BASENAME
cd $QEMU_SRC_BASENAME
git checkout $QEMU_GIT_COMMIT
Expand Down