Skip to content

Commit

Permalink
[EngSys] fix schema-registry-avro build failure on Windows (#31607)
Browse files Browse the repository at this point in the history
After moving to vendored rimraf, this particular "clean" script is
failing likely due to the escaped quoted argument before it and how
dev-tool handls arguments. Moving `*.tgz *.log` fixes it.
  • Loading branch information
jeremymeng authored Nov 2, 2024
1 parent a28e8f0 commit 8dc3e56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/schemaregistry/schema-registry-avro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build:samples": "echo Obsolete.",
"build:test": "dev-tool run build-package & dev-tool run build-test",
"check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
"clean": "dev-tool run vendored rimraf --glob dist dist-* temp \"types/!(schema-registry-avro.shims.d.ts)\" *.tgz *.log",
"clean": "dev-tool run vendored rimraf --glob dist dist-* *.tgz *.log temp \"types/!(schema-registry-avro.shims.d.ts)\"",
"execute:samples": "dev-tool samples run samples-dev",
"extract-api": "tsc -p . && dev-tool run extract-api",
"format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",
Expand Down

0 comments on commit 8dc3e56

Please sign in to comment.