summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-05-01 17:22:17 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-05-04 12:50:59 -0400
commit9529aef43b964dd535410227f99fccb04a31e1be (patch)
treea4e5e2b150742bfb04e598ba7e9cb2d35ef9421d
parent59e5d92276cf0f9f0bfdd27f1cd2636d30369c13 (diff)
bugfix: gitget: message
There's no test for this one because it's a prose string.
-rwxr-xr-xsrc/gitget/gitget2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gitget/gitget b/src/gitget/gitget
index 7a0f0bf..6a4b9d1 100755
--- a/src/gitget/gitget
+++ b/src/gitget/gitget
@@ -89,7 +89,7 @@ download_git_checkout() {
msg2 "Updating %s %s repo..." "${name}" "git"
if ! { git fetch --all -p && git checkout "$ref" && git pull origin "$ref"; } ; then
# only warn on failure to allow offline builds
- warning "Failure while updating %s %s repo" "${repo}" "git"
+ warning "Failure while updating %s %s repo" "${name}" "git"
fi
fi
}