commit: 7e367361cb29ff4c8dbad720fe142b6c2c78a672
Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com>
AuthorDate: Fri Sep 18 04:38:47 2015 +0000
Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Fri Sep 18 04:38:47 2015 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=7e367361
missed function
eclass/mpt-r20150903.eclass | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/eclass/mpt-r20150903.eclass b/eclass/mpt-r20150903.eclass
index 930a70e..427338d 100644
--- a/eclass/mpt-r20150903.eclass
+++ b/eclass/mpt-r20150903.eclass
@@ -25,13 +25,21 @@ empt-gitmodules() {
empt-sln() {
"${TOOLS_PATH}/empt-sln" $@ || die
}
+
# @FUNCTION: empt-csproj
# @DESCRIPTION: wraps mpt-csproj
empt-csproj() {
"${TOOLS_PATH}/empt-csproj" $@ || die
}
-# @FUNCTION: eempt-machine
+
+# @FUNCTION: empt-machine
# @DESCRIPTION: wraps empt-machine
empt-machine() {
"${TOOLS_PATH}/empt-machine" $@ || die
}
+
+# @FUNCTION: empt-nuget
+# @DESCRIPTION: wraps empt-nuget
+empt-nuget() {
+ "${TOOLS_PATH}/empt-nuget" $@ || die
+}