From: John Snow Date: Thu, 3 Jun 2021 00:37:18 +0000 (-0400) Subject: scripts/qom-fuse: add redirection shim to python/qemu/qmp/qom-fuse.py X-Git-Tag: v6.1.0-rc0~66^2~54 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c89b38cd0a9ec852ed5504b3083ca7592d76b730;p=thirdparty%2Fqemu.git scripts/qom-fuse: add redirection shim to python/qemu/qmp/qom-fuse.py By leaving the script absent for a commit, git-blame travels to the new file instead of staying on the shim. Signed-off-by: John Snow Reviewed-by: Philippe Mathieu-Daudé Message-id: 20210603003719.1321369-19-jsnow@redhat.com Signed-off-by: John Snow --- diff --git a/scripts/qmp/qom-fuse b/scripts/qmp/qom-fuse new file mode 100755 index 00000000000..a58c8ef9793 --- /dev/null +++ b/scripts/qmp/qom-fuse @@ -0,0 +1,11 @@ +#!/usr/bin/env python3 + +import os +import sys + +sys.path.append(os.path.join(os.path.dirname(__file__), '..', '..', 'python')) +from qemu.qmp.qom_fuse import QOMFuse + + +if __name__ == '__main__': + sys.exit(QOMFuse.entry_point())