Skip to content

Commit

Permalink
fix: tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
darkskygit authored Aug 14, 2024
1 parent c368ba9 commit 83d73f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ impl<'a> Builder<'a> {
.map(|f| {
GlobFile {
// This should never be `None`
suffix: Path::new(f.path)
.strip_prefix(split_glob.prefix)
.expect("embedded file path does not start with glob prefix")
.to_str()
.expect("embedded file path contains invalid UTF-8 characters"),
suffix: Path::new(f.path)
.strip_prefix(split_glob.prefix)
.expect("embedded file path does not start with glob prefix")
.to_str()
.expect("embedded file path contains invalid UTF-8 characters"),
source: f.data_source(),
}
})
Expand Down

0 comments on commit 83d73f4

Please sign in to comment.