1
0
Fork 0
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:
Yang, Bo 2023-05-07 09:38:04 -07:00
parent 35bfb0a2c9
commit 8c3555be77

View file

@ -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 { }