Skip to content

Commit

Permalink
[56_2] Fix removing of temp dirs
Browse files Browse the repository at this point in the history
Fix bug #136

Co-authored-by: Jeroen Wouters <j.wouters@reading.ac.uk>
Reviewed-on: https://codeberg.org/XmacsLabs/mogan/pulls/137
Co-authored-by: woutersj <woutersj@noreply.codeberg.org>
Co-committed-by: woutersj <woutersj@noreply.codeberg.org>
  • Loading branch information
2 people authored and da-liii committed Sep 22, 2023
1 parent 2fbd007 commit 7877118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/System/Boot/init_texmacs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ bool
process_running (int pid) {
string cmd= "ps -p " * as_string (pid);
string ret= eval_system (cmd);
return occurs ("texmacs", ret) && occurs (as_string (pid), ret);
return occurs ("mogan", ret) && occurs (as_string (pid), ret);
}

static void
Expand Down

0 comments on commit 7877118

Please sign in to comment.