mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2025-12-22 02:00:37 +08:00
9 lines
145 B
Bash
9 lines
145 B
Bash
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
if [[ "$DEBUG" == [Yy1]* ]]; then
|
|
printf "QEMU arguments:\n\n%s\n\n" "${ARGS// -/$'\n-'}"
|
|
fi
|
|
|
|
return 0
|