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 37f6fa7 commit dbef4a0Copy full SHA for dbef4a0
crates/xtask/src/main.rs
@@ -1372,7 +1372,7 @@ impl Xtasks {
1372
let mut context = tera::Context::new();
1373
let workspace_dir = Self::workspace_dir(&app_settings)?;
1374
let json_workspace_dir = serde_json::to_string(&workspace_dir)?; // make sure this works as a json string
1375
- context.insert("dir", &json);
+ context.insert("dir", &json_workspace_dir);
1376
1377
let templated_settings = tera.render_str(vscode_settings, &context)?;
1378
let templated_settings_json = Self::read_json_with_comments(templated_settings.as_bytes())
0 commit comments