diff options
| -rw-r--r-- | .vim/UltiSnips/ebuild.snippets | 2 |
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" |