Skip to content

Commit caa725a

Browse files
beardhatcodebjornfor
authored andcommitted
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"
1 parent 16b8010 commit caa725a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nixos/modules/services/web-apps/nextcloud.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ let
3939
export NEXTCLOUD_CONFIG_DIR="${cfg.home}/config"
4040
$sudo \
4141
${phpPackage}/bin/php \
42-
occ $*
42+
occ "$@"
4343
'';
4444

4545
inherit (config.system) stateVersion;

0 commit comments

Comments
 (0)