diff options
Diffstat (limited to 'config.sh')
-rwxr-xr-x | config.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config.sh b/config.sh index 8d19ad6..342ff83 100755 --- a/config.sh +++ b/config.sh @@ -17,8 +17,10 @@ export WORKING_DIRECTORY export DSCIP_PRE_CMD="$WORKING_DIRECTORY/pre.sh" # Commands to run to build program. # export DSCIP_BUILD_CMD="$WORKING_DIRECTORY/build.sh" -# Commands to run after building is done. # +# Commands to run after building has succeeded. # export DSCIP_POST_CMD="$WORKING_DIRECTORY/post.sh" +# Commands to run after building has failed. +export DSCIP_FAILED_CMD="$WORKING_DIRECTORY/failed.sh" # Daemon mode options # export DSCIP_DAEMON="false" # If daemon mode should be enabled or not. # export DSCIP_DAEMON_FORK="true" # If the daemon should run in the background. # |