about summary refs log tree commit diff
diff options
context:
space:
mode:
-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;