mirror of
https://github.com/hercules-ci/flake-parts.git
synced 2025-04-09 02:24:01 +00:00
Use toString instead of string interpolation
This commit is contained in:
parent
35bfb0a2c9
commit
8c3555be77
1 changed files with 1 additions and 1 deletions
2
lib.nix
2
lib.nix
|
@ -172,7 +172,7 @@ let
|
|||
lib.attrsets.concatMapAttrs
|
||||
(inputName: input:
|
||||
(
|
||||
if lib.strings.hasPrefix input.outPath "${outPath}" then
|
||||
if lib.strings.hasPrefix input.outPath (toString outPath) then
|
||||
input
|
||||
else
|
||||
findInputByOutPath outPath input.inputs or { }
|
||||
|
|
Loading…
Add table
Reference in a new issue