sh: Switch from sfz to miniserve in serve alias
Serve alias (now also with a more appropriately named file) will now look for miniserve before any other static file serve program. I also replaced sfz with miniserve in my installed programs. That is because sfz has been unmaintained for a long time and miniserve completely fulfills all my needs while still being maintained and recommended.
This commit is contained in:
parent
a0802d69f8
commit
5b723ddfb0
2 changed files with 4 additions and 2 deletions
|
|
@ -2,7 +2,9 @@
|
|||
## Quickly bring up a file server for
|
||||
# the current directory.
|
||||
|
||||
if exist sfz; then
|
||||
if exist miniserve; then
|
||||
alias serve="miniserve"
|
||||
elif exist sfz; then
|
||||
alias serve="sfz"
|
||||
elif exist gossa; then
|
||||
alias serve="gossa"
|
||||
Loading…
Add table
Add a link
Reference in a new issue