From f06230482ec40ab415e12cb4276c6189a5ba9529 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Thu, 18 Feb 2021 06:47:59 +0200 Subject: [PATCH] Run bash-it with the interactive flag (fix #642) (#643) --- src/steps/os/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/unix.rs b/src/steps/os/unix.rs index 061a4520..013988c4 100644 --- a/src/steps/os/unix.rs +++ b/src/steps/os/unix.rs @@ -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() }