From a68387abed301221b7fef05b800059af2e87d38e Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Tue, 1 Dec 2020 11:28:52 +0200 Subject: [PATCH] Fix oh-my-zsh (fix #567) (#568) --- src/steps/zsh.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/zsh.rs b/src/steps/zsh.rs index ce3d83ea..85cc3c52 100644 --- a/src/steps/zsh.rs +++ b/src/steps/zsh.rs @@ -139,7 +139,7 @@ pub fn run_oh_my_zsh(ctx: &ExecutionContext) -> Result<()> { } ctx.run_type() - .execute("sh") + .execute("zsh") .env("ZSH", &oh_my_zsh) .arg(&oh_my_zsh.join("tools/upgrade.sh")) .check_run()