nixos/nextcloud: fix missing quotes arround $* in occ wrapper and replace with $@

This will allow this to work:
    nextcloud-occ config:app:set theming slogan --value="A place for testing"
This commit is contained in:
Robbert Gurdeep Singh 2020-12-20 17:16:11 +01:00 committed by Bjørn Forsman
parent 16b80104bf
commit caa725a6fd

View file

@ -39,7 +39,7 @@ let
export NEXTCLOUD_CONFIG_DIR="${cfg.home}/config"
$sudo \
${phpPackage}/bin/php \
occ $*
occ "$@"
'';
inherit (config.system) stateVersion;