Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required. shlf.space
at master 19 lines 523 B view raw
1#! /bin/bash 2 3go run github.com/bluesky-social/indigo/cmd/lexgen \ 4 --package shlf \ 5 --outdir api/shlf \ 6 --build-file lexicon-build-config.json \ 7 lexicons/ 8 9find ./api/shlf -type f -exec sed -i.bak 's/\lexutil/\/\/\lexutil/' {} + 10find ./api/shlf -type f -exec sed -i.bak -E 's/^(.+)github(.+)//' {} + 11go run ./cmd/cborgen.go 12 13go run github.com/bluesky-social/indigo/cmd/lexgen \ 14 --package shlf \ 15 --outdir api/shlf \ 16 --build-file lexicon-build-config.json \ 17 lexicons/ 18 19rm -rf ./api/shlf/*.bak