Files
qemu/scripts/qmp/qmp-shell
John Snow b08e111b1e scripts: nudge users to use 'run' script for scripts that import qemu.qmp
Now that qmp has to be installed and isn't local, we can no longer offer
a simple forwarder for these scripts (nor path hacks) and hope that it
works. Encourage users to use the 'run' script to use these scripts
instead.

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-ID: <20260218213416.674483-18-jsnow@redhat.com>
Signed-off-by: John Snow <jsnow@redhat.com>
2026-02-24 13:11:29 -05:00

11 lines
191 B
Python
Executable File

#!/usr/bin/env python3
import sys
print(
"This script has moved; after running configure,"
" please use '$builddir/run qmp-shell [...]' instead.",
file=sys.stderr
)
sys.exit(1)