Execute userConfig
for current user only once
This commit is contained in:
parent
394305a56a
commit
56baf02459
1 changed files with 3 additions and 1 deletions
|
@ -25,7 +25,9 @@ begin
|
||||||
end
|
end
|
||||||
|
|
||||||
for name in (echo "$users" | jq '.[]' --raw-output0 | string split0)
|
for name in (echo "$users" | jq '.[]' --raw-output0 | string split0)
|
||||||
runInstaller userConfig "$name"
|
if [ "$name" != "$USER" ]
|
||||||
|
runInstaller userConfig "$name"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
else if [ "$action" = "userConfig" ]
|
else if [ "$action" = "userConfig" ]
|
||||||
set -l name $argv[2]
|
set -l name $argv[2]
|
||||||
|
|
Loading…
Reference in a new issue