diff options
-rwxr-xr-x | dscip | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dscip b/dscip index 6a03785..f009fd4 100755 --- a/dscip +++ b/dscip @@ -112,16 +112,16 @@ build () { # Begin running the build scripts. { cd "$WORKING_DIRECTORY/wrkdir"; - echo "Running pre-build commands..."; + echo "[dscip] Running pre-build commands..."; "$DSCIP_PRE_CMD"; - echo "Running build commands..."; + echo "[dscip] Running build commands..."; cd "$WORKING_DIRECTORY/wrkdir"; if "$DSCIP_BUILD_CMD"; then - echo "Running post-build commands..."; + echo "[dscip] Running post-build commands..."; cd "$WORKING_DIRECTORY/wrkdir"; "$DSCIP_POST_CMD"; else - echo "Build failed. Running failure commands..."; + echo "[dscip] Build failed. Running failure commands..."; "$DSCIP_FAILED_CMD"; fi } >> "$DSCIP_OUTPUT_TO" 2>&1 |