From 2e0e6dcc8bc19c3e5183ce9be4880d7c8c4404f6 Mon Sep 17 00:00:00 2001 From: Artyom Date: Mon, 11 Apr 2016 13:14:34 +0300 Subject: [PATCH] [test] List files manually --- scripts/test-official.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/test-official.sh b/scripts/test-official.sh index 63dd84fb..15d1da52 100755 --- a/scripts/test-official.sh +++ b/scripts/test-official.sh @@ -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 @@ -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