File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
docs/nodes/compute/installation Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ The procedure is similar for updates.
40
40
41
41
``` shell
42
42
# Download the latest release
43
- curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | grep " browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | sed ' 1p;d' | xargs wget -P /opt -
43
+ release=$( curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | awk -F' "' ' /"tag_name":/ {print $4}' )
44
+ sudo wget -P /opt/ https://github.com/aleph-im/aleph-vm/releases/download/${release} /aleph-vm.debian-12.deb
44
45
# Install it
45
46
apt install /opt/aleph-vm.debian-12.deb
46
47
```
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ The procedure is similar for updates.
40
40
41
41
``` shell
42
42
# Download the latest release
43
- curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | grep " browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | sed ' 2p;d' | xargs sudo wget -P /opt -
43
+ release=$( curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | awk -F' "' ' /"tag_name":/ {print $4}' )
44
+ sudo wget -P /opt/ https://github.com/aleph-im/aleph-vm/releases/download/${release} /aleph-vm.ubuntu-22.04.deb
44
45
# Install it
45
46
sudo apt install /opt/aleph-vm.ubuntu-22.04.deb
46
47
```
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ The procedure is similar for updates.
40
40
41
41
``` shell
42
42
# Download the latest release
43
- curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | grep " browser_download_url.*deb" | cut -d : -f 2,3 | tr -d \" | sed ' 3p;d' | xargs sudo wget -P /opt -
43
+ release=$( curl -s https://api.github.com/repos/aleph-im/aleph-vm/releases/latest | awk -F' "' ' /"tag_name":/ {print $4}' )
44
+ sudo wget -P /opt/ https://github.com/aleph-im/aleph-vm/releases/download/${release} /aleph-vm.ubuntu-24.04.deb
44
45
# Install it
45
46
sudo apt install /opt/aleph-vm.ubuntu-24.04.deb
46
47
```
You can’t perform that action at this time.
0 commit comments