implement functionExists()

Cette révision appartient à :
belliash 2012-01-15 17:30:07 +01:00
Parent d2b95c940a
révision 1431fad33b
2 fichiers modifiés avec 14 ajouts et 0 suppressions

Voir le fichier

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

Voir le fichier

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