Skip to content

Commit 4964841

Browse files
committed
feat: add --rm flag for every docker run
1 parent 866b807 commit 4964841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pub fn run(package: &Package, params: &Vec<String>) -> bool {
4747
.expect("Failed to read stdin");
4848
}
4949

50-
let mut args = vec!["run".to_string()];
50+
let mut args = vec!["run".to_string(), "--rm".to_string()];
5151
if interactive {
5252
args.push("-i".to_string());
5353
}

0 commit comments

Comments
 (0)