submodule foreach: skip eval for more than one argument
[gitweb.git] / t / t7407-submodule-foreach.sh
index be93f10cf02bc77e7c78be41bea69b4268305e66..6b2fd39aaa4890c45ef38f147ef20cf907c99da6 100755 (executable)
@@ -329,4 +329,13 @@ test_expect_success 'command passed to foreach --recursive retains notion of std
        test_cmp expected actual
 '
 
+test_expect_success 'multi-argument command passed to foreach is not shell-evaluated twice' '
+       (
+               cd super &&
+               git submodule foreach "echo \\\"quoted\\\"" > ../expected &&
+               git submodule foreach echo \"quoted\" > ../actual
+       ) &&
+       test_cmp expected actual
+'
+
 test_done