@eui/tools 6.21.115 → 6.21.117
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.version.properties +1 -1
- package/CHANGELOG.md +18 -0
- package/package.json +1 -1
- package/scripts/utils/git-utils.js +6 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.21.
|
|
1
|
+
6.21.117
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## 6.21.117 (2025-09-05)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* debug clone error - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([202f40a9](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/202f40a9bfb84d376b4264e4075d57645f22d3d1))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
10
|
+
## 6.21.116 (2025-09-05)
|
|
11
|
+
|
|
12
|
+
##### Chores
|
|
13
|
+
|
|
14
|
+
* **other:**
|
|
15
|
+
* debug clone error - MWP-11955 [MWP-11955](https://webgate.ec.europa.eu/CITnet/jira/browse/MWP-11955) ([4343f81c](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/4343f81c61c0e4c3014121023b376f0dfe6a044b))
|
|
16
|
+
|
|
17
|
+
* * *
|
|
18
|
+
* * *
|
|
1
19
|
## 6.21.115 (2025-09-05)
|
|
2
20
|
|
|
3
21
|
##### Chores
|
package/package.json
CHANGED
|
@@ -269,7 +269,11 @@ const getGitHost = (externalRepo, sdlc = false) => {
|
|
|
269
269
|
if (externalRepo) {
|
|
270
270
|
return config.git.externals.remote;
|
|
271
271
|
} else {
|
|
272
|
-
|
|
272
|
+
if (sdlc) {
|
|
273
|
+
return config.git.sdlc;
|
|
274
|
+
} else {
|
|
275
|
+
return config.git.remote;
|
|
276
|
+
}
|
|
273
277
|
}
|
|
274
278
|
}
|
|
275
279
|
}
|
|
@@ -342,6 +346,7 @@ const cloneRepo = (repoUri, folder, forced = false, shallow = false, externalRep
|
|
|
342
346
|
auth = process.env.gituser_sdlc && process.env.gitpassword_sdlc ? `${process.env.gituser_sdlc}:${process.env.gitpassword_sdlc}@` : '';
|
|
343
347
|
}
|
|
344
348
|
const gitHost = getGitHost(externalRepo, sdlc);
|
|
349
|
+
tools.logInfo(`git host : ${gitHost}`);
|
|
345
350
|
|
|
346
351
|
if (shallow) {
|
|
347
352
|
execa.shellSync(`git clone --depth 1 https://${auth}${gitHost}${repoUri} ${folder}`);
|