diff options
author | Stefan Beller <sbeller@google.com> | 2016-12-27 11:36:04 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-12 14:18:22 -0800 |
commit | 7af55d1f2bfafbe0fbc897e6f82a36d1e460b680 (patch) | |
tree | 616cdb813a0a18a237683d1db77025944c1299cf | |
parent | Fifth batch 2.12 (diff) | |
download | tgif-7af55d1f2bfafbe0fbc897e6f82a36d1e460b680.tar.xz |
t7411: quote URLs
The variables may contain white spaces, so we need to quote them.
By not quoting the variables we'd end up passing multiple arguments to
git config, which doesn't fail for two arguments as value.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7411-submodule-config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7411-submodule-config.sh b/t/t7411-submodule-config.sh index d389ae5408..e4bb9851b1 100755 --- a/t/t7411-submodule-config.sh +++ b/t/t7411-submodule-config.sh @@ -134,8 +134,8 @@ test_expect_success 'reading of local configuration' ' "" submodule \ >actual && test_cmp expect_local_path actual && - git config submodule.a.url $old_a && - git config submodule.submodule.url $old_submodule && + git config submodule.a.url "$old_a" && + git config submodule.submodule.url "$old_submodule" && git config --unset submodule.a.path c ) ' |