diff options
author | JaredD <jareddpub@gmail.com> | 2022-10-28 04:15:54 +0000 |
---|---|---|
committer | Simon Lees <simon@simotek.net> | 2023-08-07 07:01:18 +0000 |
commit | 5d01114ea25c55e96c836811bd107909ced1cc7d (patch) | |
tree | 66b0ff65d596d3052cf5f05855ea5dd8f8094bd3 /scripts/xdg-su.in | |
parent | 09c61eba4ab39f3f4762a7c4f31f644257fffe5d (diff) |
Remove quotes for lxqt-sudo cmd arg
lxqt-sudo does not use quotes for its command argument
Diffstat (limited to 'scripts/xdg-su.in')
-rw-r--r-- | scripts/xdg-su.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xdg-su.in b/scripts/xdg-su.in index c6b469d..0db7db2 100644 --- a/scripts/xdg-su.in +++ b/scripts/xdg-su.in @@ -84,7 +84,7 @@ su_lxqt() if [ $? -eq 0 ] ; then if [ -z "$user" ] ; then # -s option runs as su rather then sudo - $LXQTSU -s "$cmd" + $LXQTSU -s $cmd else # lxqt-sudo does not support specifying a user su_generic |