Skip to content

Commit 035b1af

Browse files
committed
Do not wait for scripts to finish
1 parent a055ad3 commit 035b1af

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/util.cpp

+4-6
Original file line numberDiff line numberDiff line change
@@ -683,15 +683,13 @@ void util_exec_command(cls_camera *cam, const char *command, const char *filenam
683683
exit(1);
684684
}
685685

686-
if (pid > 0) {
687-
waitpid(pid, NULL, 0);
688-
} else {
686+
if (pid == 0) {
689687
MOTION_LOG(ALR, TYPE_EVENTS, SHOW_ERRNO
690688
,_("Unable to start external command '%s'"), stamp);
689+
} else {
690+
MOTION_LOG(DBG, TYPE_EVENTS, NO_ERRNO
691+
,_("Executing external command '%s'"), stamp);
691692
}
692-
693-
MOTION_LOG(DBG, TYPE_EVENTS, NO_ERRNO
694-
,_("Executing external command '%s'"), stamp);
695693
}
696694

697695
void util_exec_command(cls_camera *cam, std::string cmd)

0 commit comments

Comments
 (0)