Setup scripts for the Heb12 API
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- cd bibleget
- go build
- cp example.config.toml config.toml
-
- # update config to point to ../bibles as the bible dir
- oldtext='Dir = ""'
- newtext='Dir = "../bibles"'
- sed -i -e "s#$oldtext#$newtext#g" config.toml
|