Skip to content

Commit 15195aa

Browse files
authored
fix: STRF-12941 Fix stencil release in case of having .git extension in the remote name (#1252)
1 parent 4fab613 commit 15195aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/release/release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class StencilRelease {
5757
name: remote.name,
5858
url,
5959
owner: match ? match[1] : null,
60-
repo: match ? match[2] : null,
60+
repo: match ? match[2].replace('.git', '') : null,
6161
};
6262
});
6363
const dirty =

0 commit comments

Comments
 (0)