diff --git a/crates/prompt_store/src/prompts.rs b/crates/prompt_store/src/prompts.rs index 846da92717164562e57f3cf956645e3959ea73f4..e95c63b8308c456a6e850f1610e33d8d185ff571 100644 --- a/crates/prompt_store/src/prompts.rs +++ b/crates/prompt_store/src/prompts.rs @@ -14,7 +14,7 @@ use std::{ time::Duration, }; use text::LineEnding; -use util::{ResultExt, get_system_shell, rel_path::RelPath}; +use util::{ResultExt, get_default_system_shell, rel_path::RelPath}; use crate::UserPromptId; @@ -43,7 +43,7 @@ impl ProjectContext { user_rules: default_user_rules, os: std::env::consts::OS.to_string(), arch: std::env::consts::ARCH.to_string(), - shell: get_system_shell(), + shell: get_default_system_shell(), } } }