Skip to content

Commit

Permalink
[fontbe] Fix path for FeaturesAst
Browse files Browse the repository at this point in the history
  • Loading branch information
cmyr committed Feb 2, 2024
1 parent 4a9ca0f commit dfe1f82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fontbe/src/paths.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl Paths {
pub fn target_file(&self, id: &WorkId) -> PathBuf {
match id {
WorkId::Features => self.build_dir.join("features.marker"),
WorkId::FeaturesAst => self.build_dir.join("features_ast.marker"),
WorkId::FeaturesAst => self.build_dir.join("features_ast.bin"),
WorkId::GlyfFragment(name) => self.glyph_glyf_file(name.as_str()),
WorkId::GvarFragment(name) => self.glyph_gvar_file(name.as_str()),
WorkId::Avar => self.build_dir.join("avar.table"),
Expand Down

0 comments on commit dfe1f82

Please sign in to comment.