@phystack/phyctl-phyos 4.5.54-dev → 4.5.55-dev
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 +18 -16
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -11,27 +11,33 @@ Download the pre-built binary for your platform. No runtime dependencies require
|
|
|
11
11
|
```bash
|
|
12
12
|
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-linux-x64.tar.gz | tar xz
|
|
13
13
|
sudo mv phyctl /usr/local/bin/
|
|
14
|
+
hash -r
|
|
15
|
+
phyctl --version
|
|
14
16
|
```
|
|
15
17
|
|
|
16
|
-
###
|
|
18
|
+
### Linux (ARM64)
|
|
17
19
|
|
|
18
20
|
```bash
|
|
19
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-
|
|
21
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-linux-arm64.tar.gz | tar xz
|
|
20
22
|
sudo mv phyctl /usr/local/bin/
|
|
23
|
+
hash -r
|
|
24
|
+
phyctl --version
|
|
21
25
|
```
|
|
22
26
|
|
|
23
|
-
### macOS (
|
|
27
|
+
### macOS (Apple Silicon)
|
|
24
28
|
|
|
25
29
|
```bash
|
|
26
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-
|
|
30
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-arm64.tar.gz | tar xz
|
|
27
31
|
sudo mv phyctl /usr/local/bin/
|
|
32
|
+
phyctl --version
|
|
28
33
|
```
|
|
29
34
|
|
|
30
|
-
###
|
|
35
|
+
### macOS (Intel)
|
|
31
36
|
|
|
32
37
|
```bash
|
|
33
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-
|
|
38
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-x64.tar.gz | tar xz
|
|
34
39
|
sudo mv phyctl /usr/local/bin/
|
|
40
|
+
phyctl --version
|
|
35
41
|
```
|
|
36
42
|
|
|
37
43
|
### Install a specific version
|
|
@@ -39,20 +45,16 @@ sudo mv phyctl /usr/local/bin/
|
|
|
39
45
|
Replace `latest` with the version number:
|
|
40
46
|
|
|
41
47
|
```bash
|
|
42
|
-
curl -fsSL https://os.phygrid.com/phystack-npm/releases/4.5.
|
|
48
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/4.5.54-dev/phyctl-linux-x64.tar.gz | tar xz
|
|
43
49
|
```
|
|
44
50
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
phyctl --version
|
|
49
|
-
```
|
|
51
|
+
> **Note:** If you previously had phyctl installed via npm, remove it first or run `hash -r` after installing the binary to clear the shell's path cache.
|
|
50
52
|
|
|
51
53
|
## Supported platforms
|
|
52
54
|
|
|
53
55
|
| Platform | Architecture | Download |
|
|
54
56
|
|----------|-------------|----------|
|
|
55
|
-
| Linux | x86_64 |
|
|
56
|
-
| Linux | ARM64 |
|
|
57
|
-
| macOS | ARM64 |
|
|
58
|
-
| macOS | x86_64 |
|
|
57
|
+
| Linux | x86_64 | [phyctl-linux-x64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phyctl-linux-x64.tar.gz) |
|
|
58
|
+
| Linux | ARM64 | [phyctl-linux-arm64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phyctl-linux-arm64.tar.gz) |
|
|
59
|
+
| macOS | ARM64 | [phyctl-darwin-arm64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-arm64.tar.gz) |
|
|
60
|
+
| macOS | x86_64 | [phyctl-darwin-x64.tar.gz](https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-x64.tar.gz) |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@phystack/phyctl-phyos",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.55-dev",
|
|
4
4
|
"exports": "./index.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"publishConfig": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"description": "",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@phystack/hub-client": "4.5.
|
|
34
|
+
"@phystack/hub-client": "4.5.55-dev",
|
|
35
35
|
"commander": "^13.1.0",
|
|
36
36
|
"inquirer": "^8.2.6",
|
|
37
37
|
"lodash": "^4.17.21",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"@types/node": "^20.14.9",
|
|
44
44
|
"rimraf": "^5.0.7"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "4c26e96c9ed3f6c94c12f014640a9018e8713d70"
|
|
47
47
|
}
|