implement functionExists()

Este commit está contenido en:
belliash 2012-01-15 17:30:07 +01:00
padre d2b95c940a
commit 1431fad33b
Se han modificado 2 ficheros con 14 adiciones y 0 borrados

Ver fichero

@ -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%

Ver fichero

@ -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
}