mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 05:03:09 +00:00
home-manager: fix pass-through option passing
This resolves, e.g., the errors occurring when passing empty arguments like `--option builders ''`. Closes #967
This commit is contained in:
parent
df4db50632
commit
7c30831e8f
1 changed files with 2 additions and 2 deletions
|
@ -93,14 +93,14 @@ function doBuildAttr() {
|
|||
nix build \
|
||||
-f "<home-manager/home-manager/home-manager.nix>" \
|
||||
$extraArgs \
|
||||
${PASSTHROUGH_OPTS[*]} \
|
||||
"${PASSTHROUGH_OPTS[@]}" \
|
||||
--argstr confPath "$HOME_MANAGER_CONFIG" \
|
||||
--argstr confAttr "$HOME_MANAGER_CONFIG_ATTRIBUTE"
|
||||
else
|
||||
nix-build \
|
||||
"<home-manager/home-manager/home-manager.nix>" \
|
||||
$extraArgs \
|
||||
${PASSTHROUGH_OPTS[*]} \
|
||||
"${PASSTHROUGH_OPTS[@]}" \
|
||||
--argstr confPath "$HOME_MANAGER_CONFIG" \
|
||||
--argstr confAttr "$HOME_MANAGER_CONFIG_ATTRIBUTE"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue