Fix bug where it used the path in the option name rather than the target value inside the option.
This commit is contained in:
parent
6284ce8d86
commit
83eaba357f
@ -126,7 +126,7 @@ in
|
|||||||
let
|
let
|
||||||
target_config = config.me.install.file."${target}";
|
target_config = config.me.install.file."${target}";
|
||||||
source = lib.strings.escapeShellArg "${target_config.source}";
|
source = lib.strings.escapeShellArg "${target_config.source}";
|
||||||
destination = lib.strings.escapeShellArg target;
|
destination = lib.strings.escapeShellArg "${target_config.target}";
|
||||||
mode = lib.strings.escapeShellArg "${target_config.mode}";
|
mode = lib.strings.escapeShellArg "${target_config.mode}";
|
||||||
in
|
in
|
||||||
# $DRY_RUN_CMD ${pkgs.toyboy}/bin/install $VERBOSE_ARG -D -m ${mode} ${source} ${destination}
|
# $DRY_RUN_CMD ${pkgs.toyboy}/bin/install $VERBOSE_ARG -D -m ${mode} ${source} ${destination}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user