Skip to content

Commit

Permalink
fix: STRF-12941 Fix stencil release in case of having .git extension …
Browse files Browse the repository at this point in the history
…in the remote name (#1252)
  • Loading branch information
jairo-bc authored Jan 9, 2025
1 parent 4fab613 commit 15195aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/release/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class StencilRelease {
name: remote.name,
url,
owner: match ? match[1] : null,
repo: match ? match[2] : null,
repo: match ? match[2].replace('.git', '') : null,
};
});
const dirty =
Expand Down

0 comments on commit 15195aa

Please sign in to comment.