mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-05-06 00:36:35 +00:00
10 lines
246 B
Bash
10 lines
246 B
Bash
#!/bin/bash
|
|
|
|
function __redirect_alias_nerdfont() {
|
|
echo "'nerd-font' is an alias for 'nerdfont'"
|
|
WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"}
|
|
curl -fsSL "$WEBI_HOST/nerdfont@${WEBI_VERSION:-}" | bash
|
|
}
|
|
|
|
__redirect_alias_nerdfont
|