about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-10-02 15:11:20 -0400
committerCharadon <dev@iotib.net>2022-10-02 15:11:20 -0400
commit4eb8ca6f770f4e9e7e215af1dcd274a7367c7f9e (patch)
treeeb57066ca9fa5f72168236e84155f180edfccad0
parent6299ce701bbb555120831d0853a447773f96a621 (diff)
downloaddscip-4eb8ca6f770f4e9e7e215af1dcd274a7367c7f9e.tar.gz
dscip: Prefixed the echo's announcing which script is running with [dscip]
-rwxr-xr-xdscip8
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