Skip to content

Commit d7a1a6b

Browse files
committed
fix: issues with validator download
1 parent 97d7146 commit d7a1a6b

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

scripts/build.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,7 @@ export default async function main() {
173173

174174
const buildToolsPath = path.resolve(await getBinaryPath(), "build-tools");
175175
// Validation
176-
const validatorJar = path.resolve(
177-
buildToolsPath,
178-
"dwf-format-2-validator-1.0.jar"
179-
);
176+
const validatorJar = path.resolve(buildToolsPath, "wff-validator.jar");
180177

181178
if (!fs.existsSync(validatorJar) && !nonInteractive) {
182179
const answer = await inquirer.prompt([
@@ -199,7 +196,7 @@ export default async function main() {
199196
}
200197

201198
await downloadFile(
202-
"https://github.com/google/watchface/releases/download/latest/dwf-format-2-validator-1.0.jar",
199+
"https://github.com/google/watchface/releases/download/latest/wff-validator.jar",
203200
validatorJar
204201
);
205202

0 commit comments

Comments
 (0)