@phystack/phyctl-phyos 4.5.49-dev → 4.5.50-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 +12 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,21 +9,28 @@ Download the pre-built binary for your platform. No runtime dependencies require
|
|
|
9
9
|
### Linux (x86_64)
|
|
10
10
|
|
|
11
11
|
```bash
|
|
12
|
-
curl -fsSL https://os.phygrid.com/
|
|
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
14
|
```
|
|
15
15
|
|
|
16
16
|
### macOS (Apple Silicon)
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
curl -fsSL https://os.phygrid.com/
|
|
19
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-arm64.tar.gz | tar xz
|
|
20
20
|
sudo mv phyctl /usr/local/bin/
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### macOS (Intel)
|
|
24
24
|
|
|
25
25
|
```bash
|
|
26
|
-
curl -fsSL https://os.phygrid.com/
|
|
26
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-darwin-x64.tar.gz | tar xz
|
|
27
|
+
sudo mv phyctl /usr/local/bin/
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Linux (ARM64)
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/latest/phyctl-linux-arm64.tar.gz | tar xz
|
|
27
34
|
sudo mv phyctl /usr/local/bin/
|
|
28
35
|
```
|
|
29
36
|
|
|
@@ -32,7 +39,7 @@ sudo mv phyctl /usr/local/bin/
|
|
|
32
39
|
Replace `latest` with the version number:
|
|
33
40
|
|
|
34
41
|
```bash
|
|
35
|
-
curl -fsSL https://os.phygrid.com/
|
|
42
|
+
curl -fsSL https://os.phygrid.com/phystack-npm/releases/4.5.48/phyctl-linux-x64.tar.gz | tar xz
|
|
36
43
|
```
|
|
37
44
|
|
|
38
45
|
### Verify installation
|
|
@@ -46,5 +53,6 @@ phyctl --version
|
|
|
46
53
|
| Platform | Architecture | Download |
|
|
47
54
|
|----------|-------------|----------|
|
|
48
55
|
| Linux | x86_64 | `phyctl-linux-x64.tar.gz` |
|
|
56
|
+
| Linux | ARM64 | `phyctl-linux-arm64.tar.gz` |
|
|
49
57
|
| macOS | ARM64 | `phyctl-darwin-arm64.tar.gz` |
|
|
50
58
|
| macOS | x86_64 | `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.50-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.50-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": "6eb11d42a5dd4064147a3366bc80c3939f37b093"
|
|
47
47
|
}
|