Skip to content

Commit

Permalink
fix(nix): fix nix expression
Browse files Browse the repository at this point in the history
  • Loading branch information
cathaysia committed Sep 9, 2023
1 parent f595f81 commit 11d0b55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/jinja/nix_expression.nix.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ in
[
{%- for item in reassets %}
{%- with uniqueId = [ item.publisher_name, '.', item.extension_name ] | join %}
vscode-utils.buildVscodeExtension {
(vscode-utils.buildVscodeExtension {
name = "{{ uniqueId }}";
vscodeExtPublisher = "{{ item.publisher_name }}";
vscodeExtName = "{{ item.extension_name }}";
Expand All @@ -18,7 +18,7 @@ vscode-utils.buildVscodeExtension {
}).outPath;
vscodeExtUniqueId = "{{ uniqueId }}";
version = "{{ item.version }}";
}
})
{%- endwith %}
{%- endfor %}
] ++
Expand Down

0 comments on commit 11d0b55

Please sign in to comment.