mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-30 06:21:38 +00:00
9 lines
182 B
Bash
Executable File
9 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# install yq
|
|
wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/bin/yq &&\
|
|
chmod +x /usr/bin/yq
|
|
|
|
# install deno
|
|
cargo install deno
|