@corgea/cli 1.9.1 → 1.9.3

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 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-gnu";
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corgea/cli",
3
- "version": "1.9.1",
3
+ "version": "1.9.3",
4
4
  "description": "The Corgea CLI. Scan for vulnerabilities, create fixes.",
5
5
  "license": "LGPL-2.1-only",
6
6
  "homepage": "https://corgea.com",
index 2ec20cd..7a26cd9 100755
Binary file