Run bash-it with the interactive flag (fix #642) (#643)

This commit is contained in:
Roey Darwish Dror
2021-02-18 06:47:59 +02:00
committed by GitHub
parent 6d130f07cb
commit f06230482e

View File

@@ -84,7 +84,7 @@ pub fn run_bashit(ctx: &ExecutionContext) -> Result<()> {
ctx.run_type()
.execute("bash")
.args(&["-lc", &format!("bash-it update {}", ctx.config().bashit_branch())])
.args(&["-lic", &format!("bash-it update {}", ctx.config().bashit_branch())])
.check_run()
}