Skip to content

Commit

Permalink
fix syntax error in generated Nix code
Browse files Browse the repository at this point in the history
  • Loading branch information
domenkozar committed May 23, 2024
1 parent a205e17 commit ad2be5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/lib.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
inputs.${name}.url = "${url}";
${if follows != []
then "inputs.${name}.inputs = { ${lib.concatStringsSep "; " (map (i: "${i}.follows = \"${i}\";") follows)}; };"
then "inputs.${name}.inputs = { ${lib.concatStringsSep "; " (map (i: "${i}.follows = \"${i}\"") follows)}; };"
else ""}
''
else if lib.versionAtLeast config.devenv.cliVersion "1.0"
Expand Down

0 comments on commit ad2be5a

Please sign in to comment.