ezbuild/modules/sample.ezmod

27 lines
540 B
Plaintext
Raw Normal View History

2012-01-15 23:40:29 +01:00
# Copyright 2010-2012, Asio Software Technologies
# Distributed under the terms of the GNU General Public License v3
2012-01-15 14:04:42 +01:00
EZMOD_DESCRIPTION="Sample module for learning and testing purposes"
EZMOD_COMPATIBILITY="ezbuild ezsync"
EZMOD_AUTHOR="Rafal Kupiec"
2012-01-16 15:46:45 +01:00
EZMOD_VERSION="0.3"
2012-01-15 23:31:58 +01:00
ezsync_presync() {
2012-01-16 15:46:45 +01:00
printWarn "Sample module loaded"
2012-01-15 23:31:58 +01:00
return 0
}
ezsync_postsync() {
2012-01-16 15:46:45 +01:00
printWarn "Sample module loaded"
2012-01-15 23:31:58 +01:00
return 0
}
ezsync_precommit() {
2012-01-16 15:46:45 +01:00
printWarn "Sample module loaded"
2012-01-15 23:31:58 +01:00
return 0
}
ezsync_postcommit() {
2012-01-16 15:46:45 +01:00
printWarn "Sample module loaded"
2012-01-15 23:31:58 +01:00
return 0
}