diff options
author | Michał Górny <mgorny@gentoo.org> | 2015-11-19 15:52:16 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2015-11-19 15:54:20 +0100 |
commit | ca5dba7126926d1dec043ad24e85bd0edd0c3858 (patch) | |
tree | 7b55101d531a63e215c60d938cfa5c3b9f6fd274 /eclass/git-r3.eclass | |
parent | git-r3.eclass: Remove redundant ||die in subshell (diff) | |
download | gentoo-ca5dba7126926d1dec043ad24e85bd0edd0c3858.tar.gz gentoo-ca5dba7126926d1dec043ad24e85bd0edd0c3858.tar.bz2 gentoo-ca5dba7126926d1dec043ad24e85bd0edd0c3858.zip |
git-r3.eclass: Add EAPI 6 support
Diffstat (limited to 'eclass/git-r3.eclass')
-rw-r--r-- | eclass/git-r3.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index c489234854bd..79aa844054f7 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -11,7 +11,7 @@ # git as remote repository. case "${EAPI:-0}" in - 0|1|2|3|4|5) + 0|1|2|3|4|5|6) ;; *) die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" |