🎉 Added miniserve
This commit is contained in:
parent
ab40739ca1
commit
4bdab62491
@ -8,6 +8,7 @@ set(TOOLS
|
|||||||
"muesli/duf"
|
"muesli/duf"
|
||||||
"jesseduffield/lazygit"
|
"jesseduffield/lazygit"
|
||||||
"jesseduffield/lazydocker"
|
"jesseduffield/lazydocker"
|
||||||
|
"svenstaro/miniserve"
|
||||||
)
|
)
|
||||||
|
|
||||||
set(EXTRA_TOOLS
|
set(EXTRA_TOOLS
|
||||||
|
@ -34,6 +34,12 @@ Repo: https://github.com/jesseduffield/lazydocker
|
|||||||
|
|
||||||
`curl "https://raw.githubusercontent.com/AnotherFoxGuy/ci-scripts/main/install-lazydocker.sh" | sudo bash`
|
`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
|
### butler
|
||||||
|
|
||||||
Repo: https://github.com/itchio/butler
|
Repo: https://github.com/itchio/butler
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -eu
|
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
|
sh /tmp/cmake.sh --exclude-subdir --prefix=/usr/local
|
||||||
|
5
install-miniserve.sh
Normal file
5
install-miniserve.sh
Normal 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/
|
5
templates/install-miniserve.sh.in
Normal file
5
templates/install-miniserve.sh.in
Normal 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/
|
Loading…
x
Reference in New Issue
Block a user