15 lines
506 B
Bash
15 lines
506 B
Bash
|
##############################################################################
|
||
|
# This optional file "builder-targets-cb.sh" will be called by builder.sh
|
||
|
#
|
||
|
# You can overwrite target functions like
|
||
|
# config, prepare, retrieve, create, package, publish, commit, cleanup
|
||
|
# and define callback functions
|
||
|
# cb_package_makeproductfile
|
||
|
#
|
||
|
##############################################################################
|
||
|
|
||
|
function cleanup() {
|
||
|
echo "Cleanup: output_dir: $output_dir"
|
||
|
builder_cleanup
|
||
|
}
|