diff options
author | Jeff King <peff@peff.net> | 2016-12-16 03:30:12 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-12-16 18:29:16 +0100 |
commit | de95302a4c0c6c733fb734b5a3d3d54dd54ec674 (patch) | |
tree | de17f1d510101f0e473bd89618fef0a818c76647 /t/t5000-tar-tree.sh | |
parent | Git 2.11 (diff) | |
download | git-de95302a4c0c6c733fb734b5a3d3d54dd54ec674.tar.xz git-de95302a4c0c6c733fb734b5a3d3d54dd54ec674.zip |
t5000: extract nongit function to test-lib-functions.sh
This function abstracts the idea of running a command
outside of any repository (which is slightly awkward to do
because even if you make a non-repo directory, git may keep
walking up outside of the trash directory). There are
several scripts that use the same technique, so let's make
the function available for everyone.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5000-tar-tree.sh')
-rwxr-xr-x | t/t5000-tar-tree.sh | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/t/t5000-tar-tree.sh b/t/t5000-tar-tree.sh index 830bf2a2f6..886b6953e4 100755 --- a/t/t5000-tar-tree.sh +++ b/t/t5000-tar-tree.sh @@ -94,20 +94,6 @@ check_tar() { ' } -# run "$@" inside a non-git directory -nongit () { - test -d non-repo || - mkdir non-repo || - return 1 - - ( - GIT_CEILING_DIRECTORIES=$(pwd) && - export GIT_CEILING_DIRECTORIES && - cd non-repo && - "$@" - ) -} - test_expect_success \ 'populate workdir' \ 'mkdir a && |