From 8dc2022cf8f1318bad3cdfb7bec366f2a94ff6b6 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Mon, 30 Mar 2020 10:42:12 +0300 Subject: [PATCH] fix --- 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 84097ff3..ca92caa1 100644 --- a/src/steps/zsh.rs +++ b/src/steps/zsh.rs @@ -101,7 +101,7 @@ pub fn run_oh_my_zsh(ctx: &ExecutionContext) -> Result<()> { if let Ok(custom_plugins_dir) = fs::read_dir(custom_dir) { let mut custom_plugins = Repositories::new(ctx.git()); - for entry in custom_plugins_dir? { + for entry in custom_plugins_dir { let entry = entry?; custom_plugins.insert_if_repo(entry.path()); }