summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-04-10 14:26:42 +0200
committerRobert Günzler <r@gnzler.io>2020-04-10 14:26:42 +0200
commit862d7f5b9c83311a194ed5895c6f5ab9d1ea77a0 (patch)
tree24540e5de7c49a5a4ba1186580c6b39b4f0ca551
parent14c0cd43711b107c2c8be54fc479e8411cc7b278 (diff)
vim: fix eapi7 snippet
-rw-r--r--.vim/UltiSnips/ebuild.snippets2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/UltiSnips/ebuild.snippets b/.vim/UltiSnips/ebuild.snippets
index 789bc33..928704c 100644
--- a/.vim/UltiSnips/ebuild.snippets
+++ b/.vim/UltiSnips/ebuild.snippets
@@ -11,7 +11,7 @@ if [[ ${PV} = *9999* ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/$1/${PN}.git"
 else
-	SRC_URI="https://github.com/$1/${PN}/archiv/${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/$1/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 fi
 
 LICENSE="MIT"