diff options
Diffstat (limited to '.travis/local')
-rwxr-xr-x | .travis/local/test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis/local/test.sh b/.travis/local/test.sh index 0f1166d..90c7cd2 100755 --- a/.travis/local/test.sh +++ b/.travis/local/test.sh @@ -8,8 +8,9 @@ readonly my_repos_path="$HOME/etc/cgit-repos/my_repos.py" readonly output_path="$HOME/var/cgit-repos/output" setup_local_repo() { - mkdir -- "$local_repo_path" + mkdir -p -- "$local_repo_path" pushd -- "$local_repo_path" > /dev/null + git init echo '1' > 1.txt git add . @@ -17,6 +18,7 @@ setup_local_repo() { echo '2' > 2.txt git add . git commit -m 'second commit' + popd > /dev/null } @@ -64,10 +66,8 @@ run() { verify() { pushd -- "$output_path" > /dev/null - cd -- test_repo git log --oneline - popd > /dev/null } |