Skip to content

Commit

Permalink
Disable field validation (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
tothszabi authored Oct 11, 2023
1 parent 225e704 commit 357d163
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundletool/bundletool.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ func fetchAny(source string, fallbackSources ...string) (Path, error) {

// Command ...
func (p Path) Command(cmd string, args ...string) *command.Model {
return command.New("java", append([]string{"-jar", string(p), cmd}, args...)...)
return command.New("java", append([]string{"-Djdk.util.zip.disableZip64ExtraFieldValidation=true", "-jar", string(p), cmd}, args...)...)
}

0 comments on commit 357d163

Please sign in to comment.