Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
fix(export): don't hash file exclude filters
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Apr 9, 2024
1 parent 03e7b5a commit 7bc27a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/godot/export/packfile.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ type PackFile struct {
// Exclude is a slice of glob expressions to filter *out* game files for
// this pack file. These expressions will be evaluated from the directory
// containing the GDBuild manifest.
Exclude []string `toml:"exclude"`
Exclude []string `hash:"ignore" toml:"exclude"`
// Include is a slice of glob expressions to match game files against to
// include in this pack file. These expressions will be evaluated from the
// directory containing the GDBuild manifest.
Include []string `toml:"include"`
Include []string `hash:"ignore" toml:"include"`
// Name is the name of the pack file. If omitted a name will be chosen based
// on the pack files index within the target configuration.
Name osutil.Path `toml:"name"`
Expand Down

0 comments on commit 7bc27a5

Please sign in to comment.