d285cbf349
Call it as normal executable instead of forcing it through /bin/sh. Especially when now it have bash shebang. Fixes QubesOS/qubes-issues#4417
10 lines
225 B
Bash
Executable File
10 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source Qubes library.
|
|
# shellcheck source=init/functions
|
|
. /usr/lib/qubes/init/functions
|
|
|
|
if is_updateable ; then
|
|
/usr/lib/qubes/qrexec-client-vm dom0 qubes.SyncAppMenus /etc/qubes-rpc/qubes.GetAppmenus
|
|
fi
|