diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-11 22:13:05 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-11 22:13:05 +0200 |
commit | 0e38d3acd98b6cf472f60cea735af8a100a3f5b0 (patch) | |
tree | 40f818e69523aa20fccc1b7333c42a0638f3dcb2 /tests/blogc-git-receiver/check_pre_receive.sh | |
parent | 69d5ab4863958fe065ae91440f2d175b55fcf266 (diff) | |
download | blogc-0e38d3acd98b6cf472f60cea735af8a100a3f5b0.tar.gz blogc-0e38d3acd98b6cf472f60cea735af8a100a3f5b0.tar.bz2 blogc-0e38d3acd98b6cf472f60cea735af8a100a3f5b0.zip |
tests: git-receiver: avoid removing directories for safety
Diffstat (limited to 'tests/blogc-git-receiver/check_pre_receive.sh')
-rwxr-xr-x | tests/blogc-git-receiver/check_pre_receive.sh | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/tests/blogc-git-receiver/check_pre_receive.sh b/tests/blogc-git-receiver/check_pre_receive.sh index dc2066f..7ef7f0e 100755 --- a/tests/blogc-git-receiver/check_pre_receive.sh +++ b/tests/blogc-git-receiver/check_pre_receive.sh @@ -9,7 +9,7 @@ TEMP="$(mktemp -d)" trap_func() { [[ -e "${TEMP}/output.txt" ]] && cat "${TEMP}/output.txt" - rm -rf "${TEMP}" + [[ -n "${TEMP}" ]] && rm -rf "${TEMP}" } trap trap_func EXIT @@ -62,9 +62,8 @@ SHELL="${SELF}" HOME="${TEMP}" ${TESTS_ENVIRONMENT} ./hooks/pre-receive < "${TEM grep "warning: no makefile found. skipping ..." "${TEMP}/output.txt" &> /dev/null cd "${TEMP}" -rm -rf "${TEMP}/repos/foo.git" -git init --bare "${TEMP}/repos/foo.git" &> /dev/null -ln -s "${SELF}" "${TEMP}/repos/foo.git/hooks/pre-receive" +git init --bare "${TEMP}/repos/foo2.git" &> /dev/null +ln -s "${SELF}" "${TEMP}/repos/foo2.git/hooks/pre-receive" cat > "${TEMP}/tmp.txt" <<EOF blob @@ -85,7 +84,7 @@ M 100644 :1 Makefile EOF -cd "${TEMP}/repos/foo.git" +cd "${TEMP}/repos/foo2.git" git fast-import < "${TEMP}/tmp.txt" &> /dev/null cat > "${TEMP}/payload.txt" <<EOF @@ -104,9 +103,8 @@ DEST="$(readlink htdocs)" [[ -e "${DEST}" ]] cd "${TEMP}" -rm -rf "${TEMP}/repos/foo.git" -git init --bare "${TEMP}/repos/foo.git" &> /dev/null -ln -s "${SELF}" "${TEMP}/repos/foo.git/hooks/pre-receive" +git init --bare "${TEMP}/repos/foo3.git" &> /dev/null +ln -s "${SELF}" "${TEMP}/repos/foo3.git/hooks/pre-receive" cat > "${TEMP}/tmp.txt" <<EOF blob @@ -127,7 +125,7 @@ M 100644 :1 Makefile EOF -cd "${TEMP}/repos/foo.git" +cd "${TEMP}/repos/foo3.git" ln -s "${DEST}" htdocs git fast-import < "${TEMP}/tmp.txt" &> /dev/null |