update sample module

This commit is contained in:
belliash 2012-01-16 15:46:45 +01:00
parent e44cb0b8e2
commit d6b388b00a
1 changed files with 5 additions and 5 deletions

View File

@ -3,24 +3,24 @@
EZMOD_DESCRIPTION="Sample module for learning and testing purposes" EZMOD_DESCRIPTION="Sample module for learning and testing purposes"
EZMOD_COMPATIBILITY="ezbuild ezsync" EZMOD_COMPATIBILITY="ezbuild ezsync"
EZMOD_AUTHOR="Rafal Kupiec" EZMOD_AUTHOR="Rafal Kupiec"
EZMOD_VERSION="0.2" EZMOD_VERSION="0.3"
ezsync_presync() { ezsync_presync() {
printWarn "This function executes just before refreshing repositories!" printWarn "Sample module loaded"
return 0 return 0
} }
ezsync_postsync() { ezsync_postsync() {
printWarn "This function executes just after refreshing repositories and just before merging data!" printWarn "Sample module loaded"
return 0 return 0
} }
ezsync_precommit() { ezsync_precommit() {
printWarn "This function executes just after merging data and just before committing changes!" printWarn "Sample module loaded"
return 0 return 0
} }
ezsync_postcommit() { ezsync_postcommit() {
printWarn "This function executes just after committing changes to remote repositories!" printWarn "Sample module loaded"
return 0 return 0
} }