mirror of
https://github.com/RoboSats/robosats-startos.git
synced 2025-07-31 15:01:36 +00:00
8 lines
181 B
Bash
Executable File
8 lines
181 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 |