🎉 Added miniserve

This commit is contained in:
Edgar 2021-09-04 15:54:16 +02:00
parent ab40739ca1
commit 4bdab62491
No known key found for this signature in database
GPG Key ID: 17D930BB616061A5
5 changed files with 18 additions and 1 deletions

View File

@ -8,6 +8,7 @@ set(TOOLS
"muesli/duf"
"jesseduffield/lazygit"
"jesseduffield/lazydocker"
"svenstaro/miniserve"
)
set(EXTRA_TOOLS

View File

@ -34,6 +34,12 @@ Repo: https://github.com/jesseduffield/lazydocker
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-lazydocker.sh" | sudo bash`
### miniserve
Repo: https://github.com/svenstaro/miniserve
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-miniserve.sh" | sudo bash`
### butler
Repo: https://github.com/itchio/butler

View File

@ -1,5 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
wget "https://github.com/Kitware/CMake/releases/download/v3.21.2/cmake-3.21.2-Linux-x86_64.sh" -nv -O /tmp/cmake.sh
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local

5
install-miniserve.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/svenstaro/miniserve/releases/download/v0.16.0/miniserve-v0.16.0-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
install -m 755 /tmp/miniserve /usr/local/bin/

View File

@ -0,0 +1,5 @@
#!/bin/bash
set -eu
wget "https://github.com/svenstaro/miniserve/releases/download/v@VERSION@/miniserve-v@VERSION@-x86_64-unknown-linux-musl" -nv -O /tmp/miniserve
install -m 755 /tmp/miniserve /usr/local/bin/