mirror of
https://github.com/vdsm/virtual-dsm.git
synced 2026-01-08 07:11:50 +00: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
|