@capgo/cli 4.10.51 → 4.10.52
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/.github/workflows/check_posix_paths.yml +4 -4
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -133,10 +133,10 @@ jobs:
|
|
|
133
133
|
java-version: '17'
|
|
134
134
|
|
|
135
135
|
- name: Compile VerifyZip.java
|
|
136
|
-
run: javac VerifyZip.java
|
|
136
|
+
run: javac ./test/VerifyZip.java
|
|
137
137
|
|
|
138
138
|
- name: Verify ZIP file integrity for Linux build with Java
|
|
139
|
-
run: java VerifyZip build-linux.zip
|
|
139
|
+
run: java -cp ./test VerifyZip build-linux.zip
|
|
140
140
|
|
|
141
141
|
- name: Download build-windows-2019.zip artifact
|
|
142
142
|
uses: actions/download-artifact@v4
|
|
@@ -202,7 +202,7 @@ jobs:
|
|
|
202
202
|
fi
|
|
203
203
|
|
|
204
204
|
- name: Verify ZIP file integrity for Windows 2019 build with Java
|
|
205
|
-
run: java VerifyZip build-windows-2019.zip
|
|
205
|
+
run: java -cp ./test VerifyZip build-windows-2019.zip
|
|
206
206
|
|
|
207
207
|
- name: Verify ZIP file integrity for Windows 2022 build with Java
|
|
208
|
-
run: java VerifyZip build-windows-2022.zip
|
|
208
|
+
run: java -cp ./test VerifyZip build-windows-2022.zip
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.10.52](https://github.com/Cap-go/CLI/compare/v4.10.51...v4.10.52) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* path ([78a210e](https://github.com/Cap-go/CLI/commit/78a210e9fc61add77be4e0103abffd5469fbfd00))
|
|
11
|
+
|
|
5
12
|
### [4.10.51](https://github.com/Cap-go/CLI/compare/v4.10.50...v4.10.51) (2024-06-21)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -112906,7 +112906,7 @@ var {
|
|
|
112906
112906
|
// package.json
|
|
112907
112907
|
var package_default = {
|
|
112908
112908
|
name: "@capgo/cli",
|
|
112909
|
-
version: "4.10.
|
|
112909
|
+
version: "4.10.52",
|
|
112910
112910
|
description: "A CLI to upload to capgo servers",
|
|
112911
112911
|
author: "github.com/riderx",
|
|
112912
112912
|
license: "Apache 2.0",
|