Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
web: python3 -m http.server 8000
web: HELLO=123 python3 -m http.server 8000
ping: ping 127.0.0.1 -c 20
web2: python3 -m http.server 8765
ping2: ping 127.0.0.1 -c 10
2 changes: 1 addition & 1 deletion src/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl Process {
// This keeps the same PID, allowing direct per-PID stats lookups later.
let mut c = CommandBuilder::new("sh");
c.arg("-c");
c.arg(format!("exec {}", self.command));
c.arg(self.command.clone());
c.env("TERM", "xterm-256color");
c
};
Expand Down