implement functionExists()

This commit is contained in:
belliash 2012-01-15 17:30:07 +01:00
父節點 d2b95c940a
當前提交 1431fad33b
共有 2 個文件被更改,包括 14 次插入0 次删除

查看文件

@ -72,6 +72,15 @@ function fail() {
fi
}
#-------------------------------------------------------------------------------
# Checks if the given function has been defined
# Parameters: %function%
#-------------------------------------------------------------------------------
function functionExists() {
type ${1} 2>/dev/null | grep -q "is a function"
return ${?}
}
#-------------------------------------------------------------------------------
# Checks whether a defined variable contain specified element or not
# Parameters: %element% %variable%

查看文件

@ -2,3 +2,8 @@ EZMOD_DESCRIPTION="Sample module for learning and testing purposes"
EZMOD_COMPATIBILITY="ezbuild ezsync"
EZMOD_AUTHOR="Rafal Kupiec"
EZMOD_VERSION="0.1"
ezsync_postsync() {
printWarn "fdgdfs"
# return 1
}