@capgo/cli 4.10.33 → 4.10.35
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 +24 -7
- package/CHANGELOG.md +15 -0
- package/bun.lockb +0 -0
- package/dist/index.js +58831 -55013
- package/package.json +13 -13
|
@@ -48,24 +48,41 @@ jobs:
|
|
|
48
48
|
needs: check-posix-paths-windows
|
|
49
49
|
|
|
50
50
|
steps:
|
|
51
|
-
- name:
|
|
52
|
-
uses: actions/checkout@v3
|
|
53
|
-
|
|
54
|
-
- name: Download build.zip artifacts
|
|
51
|
+
- name: Download build-windows-2019.zip artifact
|
|
55
52
|
uses: actions/download-artifact@v2
|
|
56
53
|
with:
|
|
57
54
|
name: build-zip-windows-2019
|
|
58
55
|
path: build-windows-2019.zip
|
|
59
56
|
|
|
60
|
-
- name: Download build.zip
|
|
57
|
+
- name: Download build-windows-2022.zip artifact
|
|
61
58
|
uses: actions/download-artifact@v2
|
|
62
59
|
with:
|
|
63
60
|
name: build-zip-windows-2022
|
|
64
61
|
path: build-windows-2022.zip
|
|
65
62
|
|
|
63
|
+
- name: Check file sizes
|
|
64
|
+
run: |
|
|
65
|
+
echo "Checking file sizes..."
|
|
66
|
+
ls -lh /home/runner/work/CLI/CLI/build-windows-2019.zip
|
|
67
|
+
ls -lh /home/runner/work/CLI/CLI/build-windows-2022.zip
|
|
68
|
+
|
|
69
|
+
- name: Verify ZIP file integrity for Windows 2019 build
|
|
70
|
+
run: |
|
|
71
|
+
if ! unzip -tq /home/runner/work/CLI/CLI/build-windows-2019.zip; then
|
|
72
|
+
echo "ZIP file is corrupted: build-windows-2019.zip"
|
|
73
|
+
exit 1
|
|
74
|
+
fi
|
|
75
|
+
|
|
76
|
+
- name: Verify ZIP file integrity for Windows 2022 build
|
|
77
|
+
run: |
|
|
78
|
+
if ! unzip -tq /home/runner/work/CLI/CLI/build-windows-2022.zip; then
|
|
79
|
+
echo "ZIP file is corrupted: build-windows-2022.zip"
|
|
80
|
+
exit 1
|
|
81
|
+
fi
|
|
82
|
+
|
|
66
83
|
- name: Verify POSIX paths for Windows 2019 build
|
|
67
84
|
run: |
|
|
68
|
-
unzip /home/runner/work/CLI/CLI/build-windows-2019 -d extracted-2019
|
|
85
|
+
unzip /home/runner/work/CLI/CLI/build-windows-2019.zip -d extracted-2019
|
|
69
86
|
error_found=false
|
|
70
87
|
find extracted-2019 -type f | while read -r file; do
|
|
71
88
|
if [[ "$file" =~ "\\" ]]; then
|
|
@@ -82,7 +99,7 @@ jobs:
|
|
|
82
99
|
|
|
83
100
|
- name: Verify POSIX paths for Windows 2022 build
|
|
84
101
|
run: |
|
|
85
|
-
unzip /home/runner/work/CLI/CLI/build-windows-2022 -d extracted-2022
|
|
102
|
+
unzip /home/runner/work/CLI/CLI/build-windows-2022.zip -d extracted-2022
|
|
86
103
|
error_found=false
|
|
87
104
|
find extracted-2022 -type f | while read -r file; do
|
|
88
105
|
if [[ "$file" =~ "\\" ]]; then
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
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.35](https://github.com/Cap-go/CLI/compare/v4.10.34...v4.10.35) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* test file before unzip ([9ec2ac3](https://github.com/Cap-go/CLI/commit/9ec2ac31b53cd3c5ccd76f3cb3d72cdfada63a84))
|
|
11
|
+
|
|
12
|
+
### [4.10.34](https://github.com/Cap-go/CLI/compare/v4.10.33...v4.10.34) (2024-06-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* add check file ([41cd144](https://github.com/Cap-go/CLI/commit/41cd144ee0e757157e98d5ebbdbb04fabee0e3b9))
|
|
18
|
+
* deps ([cef42c3](https://github.com/Cap-go/CLI/commit/cef42c390ac148dd24237ac603c5fbd697e3fe9c))
|
|
19
|
+
|
|
5
20
|
### [4.10.33](https://github.com/Cap-go/CLI/compare/v4.10.32...v4.10.33) (2024-06-21)
|
|
6
21
|
|
|
7
22
|
|
package/bun.lockb
CHANGED
|
Binary file
|