diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-06-22 11:56:23 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-06-22 11:56:23 +1000 |
| commit | b2e709355b89585c61ef8ef5c6eff04b96d69e0d (patch) | |
| tree | cfbd52172a89b3284b05ef3fa2c4afb12acb51fd | |
| parent | ecac158a25e9e9704ed039fa6c47849027743363 (diff) | |
General: Fix nohup file bug
| -rw-r--r-- | nohup.out | 0 | ||||
| -rwxr-xr-x | wal | 1 |
2 files changed, 1 insertions, 0 deletions
diff --git a/nohup.out b/nohup.out deleted file mode 100644 index e69de29..0000000 --- a/nohup.out +++ /dev/null @@ -114,6 +114,7 @@ def process_args(args): # -o if args.o: subprocess.Popen(["nohup", args.o], + stdout=open("/dev/null", "w"), stderr=open("/dev/null", "w"), preexec_fn=os.setpgrp) |
