git-query

git data extraction tool using c and libgit2

git clone https://9o.is/git/git-query.git

commit d72cc1ec0047a548010c1122478c59dac4c69335
parent 7875a4f5264247413894eda7e8c578f9d2907eaf
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Fri,  1 Mar 2019 11:49:29 +0100

fix issues in example scripts

- in case cd fails don't continue (don't write in previous directory).
- post-receive: quote $(pwd) in case it has spaces.

found by shellcheck tool.

Diffstat:
Mexample_create.sh | 2+-
Mexample_post-receive.sh | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/example_create.sh b/example_create.sh @@ -30,7 +30,7 @@ for dir in "${reposdir}/"*/; do printf "%s... " "${d}" mkdir -p "${curdir}/${d}" - cd "${curdir}/${d}" + cd "${curdir}/${d}" || continue stagit -c ".cache" "${reposdir}/${r}" # symlinks diff --git a/example_post-receive.sh b/example_post-receive.sh @@ -14,7 +14,7 @@ export LC_CTYPE="en_US.UTF-8" name="$1" if test "${name}" = ""; then - name=$(basename $(pwd)) + name=$(basename "$(pwd)") fi # config