Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
[test] List files manually
Browse files Browse the repository at this point in the history
  • Loading branch information
Artyom committed Apr 11, 2016
1 parent 252e73c commit 2e0e6dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/test-official.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -ev

# Test that the official database can be loaded

if [ -d "state" ]; then
if [ -d state ]; then
mv state state-old
fi

Expand All @@ -13,13 +13,14 @@ mv guide-database state
cd state
git branch -v
git status
ls
cd ..

cabal build
dist/build/guide/guide --dry-run

rm -vrf state
rm -rf state

if [ -d "state-old" ]; then
if [ -d state-old ]; then
mv state-old state
fi

0 comments on commit 2e0e6dc

Please sign in to comment.