diff --git a/src/app.rs b/src/app.rs index d7d6b11..69b7b4b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -459,13 +459,7 @@ impl AppaService { fn folders_to_run(&self, folder_path: Option<&Path>) -> AppResult> { match folder_path { Some(path) => Ok(vec![self.require_folder(path)?]), - None => { - let folders = self.state_store.folders()?; - if folders.is_empty() { - anyhow::bail!("Appa has no initialized folders"); - } - Ok(folders) - } + None => self.state_store.folders(), } }