move non-firebase to /src/

This commit is contained in:
bel
2023-10-15 08:58:26 -06:00
parent f30e3fbe71
commit c5bc7e291d
15 changed files with 3 additions and 1 deletions

16
src/homebrew/homebrew.sh Normal file
View File

@@ -0,0 +1,16 @@
#! /bin/bash
if ! which tpl; then
go install github.com/bluebrown/go-template-cli/cmd/tpl@latest
fi &> /dev/null
if ! which gojq; then
go install github.com/itchyny/gojq@latest
fi &> /dev/null
while sleep 1; do
clear
cat ./homebrew.yaml \
| gojq --yaml-input . \
| tpl --file homebrew.tmpl \
| tee ./homebrew.html
done