diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/remote-git.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/remote-git.test b/tests/remote-git.test index 5214b35..5283b91 100644 --- a/tests/remote-git.test +++ b/tests/remote-git.test @@ -11,7 +11,7 @@ # contain repositories produced) are not cleaned up. # -# Check that git version is the minimum supported one (2.11.0) or above. +# Check that git version is the minimum supported one (2.12.0) or above. # +git --version | set git_version_out @@ -26,7 +26,7 @@ end +echo "$git_version" | sed -e 's/\d+\.(\d+).*/\1/' | set git_version_minor git_supported = ($git_version_major > 2 || \ - $git_version_major == 2 && $git_version_minor >= 11) + $git_version_major == 2 && $git_version_minor >= 12) # Output directory path that testscripts must use to prepare repositories # required by tests they contains. |