浏览代码

lib: small change to git_compare_version

Fixes #7118
Marc Cornellà 5 年之前
父节点
当前提交
f75d096c1a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/git.zsh

+ 1 - 1
lib/git.zsh

@@ -185,7 +185,7 @@ function git_prompt_status() {
 # Outputs -1, 0, or 1 if the installed version is less than, equal to, or
 # greater than the input version, respectively.
 function git_compare_version() {
-  local INPUT_GIT_VERSION INSTALLED_GIT_VERSION
+  local INPUT_GIT_VERSION INSTALLED_GIT_VERSION i
   INPUT_GIT_VERSION=(${(s/./)1})
   INSTALLED_GIT_VERSION=($(command git --version 2>/dev/null))
   INSTALLED_GIT_VERSION=(${(s/./)INSTALLED_GIT_VERSION[3]})