2
0
Fork 0

implement functionExists()

Dieser Commit ist enthalten in:
belliash 2012-01-15 17:30:07 +01:00
Ursprung d2b95c940a
Commit 1431fad33b
2 geänderte Dateien mit 14 neuen und 0 gelöschten Zeilen

Datei anzeigen

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

Datei anzeigen

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