about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2020-12-11 21:20:18 +0100
committerLeah Neukirchen <leah@vuxu.org>2020-12-11 21:20:18 +0100
commit2de8262c590c5de28a1761be531ccf8453cd8129 (patch)
treea9c732fbccc189515c8f52f32c3ba286d3279b57
parentf62a5e3b2e05e3aa0c8bb6b0bfec83c760778ef3 (diff)
downloadsnooze-2de8262c590c5de28a1761be531ccf8453cd8129.tar.gz
snooze-2de8262c590c5de28a1761be531ccf8453cd8129.tar.xz
snooze-2de8262c590c5de28a1761be531ccf8453cd8129.zip
fix verbose output when no command is passed
-rw-r--r--snooze.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/snooze.c b/snooze.c
index 06329e3..730fb4b 100644
--- a/snooze.c
+++ b/snooze.c
@@ -392,16 +392,16 @@ main(int argc, char *argv[])
 		}
 	}
 
-	// no command to run, the outside script can go on
-	if (argc == optind)
-		return 0;
-
 	if (vflag) {
 		now = time(0);
 		tm = localtime(&now);
 		printf("Starting execution at %s\n", isotime(tm));
 	}
 
+	// no command to run, the outside script can go on
+	if (argc == optind)
+		return 0;
+
 	execvp(argv[optind], argv+optind);
 	perror("execvp");
 	return 255;