@eui/tools 6.20.7 → 6.20.8
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 +9 -0
- package/package.json +1 -1
- package/scripts/utils/git-utils.js +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.20.
|
|
1
|
+
6.20.8
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 6.20.8 (2024-08-07)
|
|
2
|
+
|
|
3
|
+
##### Chores
|
|
4
|
+
|
|
5
|
+
* **other:**
|
|
6
|
+
* wrong command for git authenticate for standalone pkg build - EUI-9788 [EUI-9788](https://webgate.ec.europa.eu/CITnet/jira/browse/EUI-9788) ([32afb008](https://webgate.ec.europa.eu/CITnet/stash/scm/csdr/eui-tools.git/commits/32afb00897d3c4e4cd094216cf0f7b3c779e0cc5))
|
|
7
|
+
|
|
8
|
+
* * *
|
|
9
|
+
* * *
|
|
1
10
|
## 6.20.7 (2024-08-07)
|
|
2
11
|
|
|
3
12
|
##### Chores
|
package/package.json
CHANGED
|
@@ -274,7 +274,7 @@ const authenticate = (pkg, folder) => {
|
|
|
274
274
|
tools.logInfo('DRY RUN - skipping');
|
|
275
275
|
tools.logInfo(`executing : for host: ${gitHost} - auth: ${auth} - pkgName: ${pkg.name}`);
|
|
276
276
|
} else {
|
|
277
|
-
execa.sync('git', ['remote', '--push', 'origin', `https://${auth}${gitHost}${pkg.name}.git`], { cwd: folder, stdio: 'inherit'});
|
|
277
|
+
execa.sync('git', ['remote', 'set-url', '--push', 'origin', `https://${auth}${gitHost}${pkg.name}.git`], { cwd: folder, stdio: 'inherit'});
|
|
278
278
|
}
|
|
279
279
|
}
|
|
280
280
|
|