aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-02-15 22:49:37 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-02-15 22:49:37 +0300
commitd3ef22615ba7d37be18c31b2fdd1bdb6be164939 (patch)
treee6359da93d6192caa5b4d5b4f89b5f59915fae3a /tests
parentf5fb552b85e14209a4ee3220b3bdfbcdec0d14bf (diff)
Raise minimum supported git version to 2.12.0 from 2.11.0
Diffstat (limited to 'tests')
-rw-r--r--tests/remote-git.test4
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.