|
|
- #!/usr/bin/env zsh
- # For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
-
- if [ ! -d "sql_chirho" ]; then
- echo "Hallelujah Please run this script from the root of the repository"
- exit 1
- fi
-
- # Create the sqlite database in db_chirho.sqlite
- rm db_chirho.sqlite
- sqlite3 db_chirho.sqlite < sql_chirho/sql_definitions_chirho.sql
|