core-agent-linux/misc/qubes-desktop-run
Marek Marczykowski-Górecki 3b0f80e19f
Make shebang explicit /usr/bin/python2 where it's still there
Both Archlinux and Fedora 29 have guidelines to point explicitly at
/usr/bin/python2 where it expect python2.

Also, do not use env.

Fixes QubesOS/qubes-issues#4027
2018-10-24 00:24:50 +02:00

8 lines
119 B
Python
Executable File

#!/usr/bin/python2
from qubesagent.xdg import launch
import sys
if __name__ == '__main__':
launch(*sys.argv[1:])