@corgea/cli 1.9.2 → 1.10.0
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/README.md +5 -0
- package/bin/corgea.js +1 -1
- package/package.json +1 -1
- package/vendor/aarch64-apple-darwin/corgea/corgea +0 -0
- package/vendor/{aarch64-unknown-linux-gnu → aarch64-unknown-linux-musl}/corgea/corgea +0 -0
- package/vendor/x86_64-apple-darwin/corgea/corgea +0 -0
- package/vendor/x86_64-pc-windows-msvc/corgea/corgea.exe +0 -0
- package/vendor/x86_64-unknown-linux-musl/corgea/corgea +0 -0
package/README.md
CHANGED
|
@@ -20,6 +20,11 @@ pip install corgea-cli
|
|
|
20
20
|
### Manual Installation
|
|
21
21
|
You can get the latest binaries for your OS from https://github.com/Corgea/cli/releases.
|
|
22
22
|
|
|
23
|
+
On Linux, both a `-gnu` and a `-musl` binary are published for x86_64 and
|
|
24
|
+
aarch64. The `-gnu` builds run on glibc 2.17 and newer; the `-musl` builds are
|
|
25
|
+
fully static and have no libc requirement at all, which makes them the safer
|
|
26
|
+
pick for minimal containers and CI runners.
|
|
27
|
+
|
|
23
28
|
### Setup
|
|
24
29
|
Once the binary is installed, login with your token from the Corgea app.
|
|
25
30
|
```
|
package/bin/corgea.js
CHANGED
|
@@ -10,7 +10,7 @@ function resolveTargetTriple() {
|
|
|
10
10
|
case "linux":
|
|
11
11
|
case "android":
|
|
12
12
|
if (process.arch === "x64") return "x86_64-unknown-linux-musl";
|
|
13
|
-
if (process.arch === "arm64") return "aarch64-unknown-linux-
|
|
13
|
+
if (process.arch === "arm64") return "aarch64-unknown-linux-musl";
|
|
14
14
|
return null;
|
|
15
15
|
case "darwin":
|
|
16
16
|
if (process.arch === "x64") return "x86_64-apple-darwin";
|
package/package.json
CHANGED
|
Binary file
|
|
index a656bc6..79e5ee7 100755
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|