@capgo/cli 4.10.31 → 4.10.32
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 +2 -2
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -65,7 +65,7 @@ jobs:
|
|
|
65
65
|
|
|
66
66
|
- name: Verify POSIX paths for Windows 2019 build
|
|
67
67
|
run: |
|
|
68
|
-
unzip build-windows-2019
|
|
68
|
+
unzip build-windows-2019 -d extracted-2019
|
|
69
69
|
error_found=false
|
|
70
70
|
find extracted-2019 -type f | while read -r file; do
|
|
71
71
|
if [[ "$file" =~ "\\" ]]; then
|
|
@@ -82,7 +82,7 @@ jobs:
|
|
|
82
82
|
|
|
83
83
|
- name: Verify POSIX paths for Windows 2022 build
|
|
84
84
|
run: |
|
|
85
|
-
unzip build-windows-2022
|
|
85
|
+
unzip build-windows-2022 -d extracted-2022
|
|
86
86
|
error_found=false
|
|
87
87
|
find extracted-2022 -type f | while read -r file; do
|
|
88
88
|
if [[ "$file" =~ "\\" ]]; then
|
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.32](https://github.com/Cap-go/CLI/compare/v4.10.31...v4.10.32) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* unzip command ([3e9390a](https://github.com/Cap-go/CLI/commit/3e9390a04d3c37bbc8273bcef9b9c7b4907a0ab6))
|
|
11
|
+
|
|
5
12
|
### [4.10.31](https://github.com/Cap-go/CLI/compare/v4.10.30...v4.10.31) (2024-06-21)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.js
CHANGED
|
@@ -109059,7 +109059,7 @@ var {
|
|
|
109059
109059
|
// package.json
|
|
109060
109060
|
var package_default = {
|
|
109061
109061
|
name: "@capgo/cli",
|
|
109062
|
-
version: "4.10.
|
|
109062
|
+
version: "4.10.32",
|
|
109063
109063
|
description: "A CLI to upload to capgo servers",
|
|
109064
109064
|
author: "github.com/riderx",
|
|
109065
109065
|
license: "Apache 2.0",
|