We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ResourcePaths
1 parent 6218238 commit 4c1be45Copy full SHA for 4c1be45
.changes/fix-deadlock-path-iter.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": patch
3
4
+
5
+Fixes a deadlock on the `ResourcePaths` iterator.
tooling/bundler/src/bundle/settings.rs
@@ -795,6 +795,7 @@ impl<'a> Iterator for ResourcePaths<'a> {
795
return Some(Ok(path));
796
} else if let Some(current_path) = &self.current_pattern {
797
if !self.current_pattern_is_valid {
798
+ self.glob_iter = None;
799
return Some(Err(crate::Error::GenericError(format!(
800
"Path matching '{}' not found",
801
current_path
0 commit comments