From 15195aaf82644e6680c7859d087f7117fbf5cfd0 Mon Sep 17 00:00:00 2001 From: Jairo <68893868+jairo-bc@users.noreply.github.com> Date: Thu, 9 Jan 2025 15:19:53 +0100 Subject: [PATCH] fix: STRF-12941 Fix stencil release in case of having .git extension in the remote name (#1252) --- lib/release/release.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/release/release.js b/lib/release/release.js index d2c1361e..6c98e243 100644 --- a/lib/release/release.js +++ b/lib/release/release.js @@ -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 =