mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 04:07:14 +03:00
27 lines
360 B
Bash
Executable File
27 lines
360 B
Bash
Executable File
#!/bin/bash
|
|
set -ev
|
|
|
|
# Test that the official database can be loaded
|
|
|
|
if [ -d state ]; then
|
|
mv state state-old
|
|
fi
|
|
|
|
git clone --depth 1 https://github.com/aelve/guide-database.git
|
|
mv guide-database state
|
|
|
|
cd state
|
|
git branch -v
|
|
git status
|
|
ls
|
|
cd ..
|
|
|
|
stack build $@
|
|
stack exec guide -- --dry-run
|
|
|
|
rm -rf state
|
|
|
|
if [ -d state-old ]; then
|
|
mv state-old state
|
|
fi
|