We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6c8551 commit 26ff0fcCopy full SHA for 26ff0fc
1 file changed
src/main.rs
@@ -122,6 +122,11 @@ async fn main() -> color_eyre::Result<()> {
122
if !data_dir.exists() {
123
fs::create_dir_all(data_dir)?;
124
}
125
+
126
+ if !config.workspace.exists() {
127
+ fs::create_dir_all(&config.workspace)?;
128
+ }
129
130
let history_path = data_dir.join(HISTORY_PATH);
131
// start agent
132
let (output_sender, output_receiver) =
0 commit comments