From d6b388b00ac6ba994ed7e1c1d325707690260027 Mon Sep 17 00:00:00 2001 From: belliash Date: Mon, 16 Jan 2012 15:46:45 +0100 Subject: [PATCH] update sample module --- modules/sample.ezmod | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/sample.ezmod b/modules/sample.ezmod index 0a4578f..7e363f4 100644 --- a/modules/sample.ezmod +++ b/modules/sample.ezmod @@ -3,24 +3,24 @@ EZMOD_DESCRIPTION="Sample module for learning and testing purposes" EZMOD_COMPATIBILITY="ezbuild ezsync" EZMOD_AUTHOR="Rafal Kupiec" -EZMOD_VERSION="0.2" +EZMOD_VERSION="0.3" ezsync_presync() { - printWarn "This function executes just before refreshing repositories!" + printWarn "Sample module loaded" return 0 } ezsync_postsync() { - printWarn "This function executes just after refreshing repositories and just before merging data!" + printWarn "Sample module loaded" return 0 } ezsync_precommit() { - printWarn "This function executes just after merging data and just before committing changes!" + printWarn "Sample module loaded" return 0 } ezsync_postcommit() { - printWarn "This function executes just after committing changes to remote repositories!" + printWarn "Sample module loaded" return 0 }