Skip to content

Commit

Permalink
fix(tauri-build): escape path to tauri-android project (#6785)
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Apr 24, 2023
1 parent d693e52 commit ecc9ac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/tauri-build/src/lib.rs
Expand Up @@ -318,8 +318,8 @@ dependencies {"
gradle_settings.push_str(&format!("include ':{plugin_name}'"));
gradle_settings.push('\n');
gradle_settings.push_str(&format!(
"project(':{plugin_name}').projectDir = new File('{}')",
plugin.path.display()
"project(':{plugin_name}').projectDir = new File({:?})",
tauri_utils::display_path(plugin.path)
));
gradle_settings.push('\n');

Expand Down

0 comments on commit ecc9ac9

Please sign in to comment.