From 76bba67405152e014f397c0ae45933d26da8aab8 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Fri, 17 May 2024 21:23:07 +0900 Subject: [PATCH] fix update --- build/update.js | 1 + 1 file changed, 1 insertion(+) diff --git a/build/update.js b/build/update.js index b6996a3..7347413 100644 --- a/build/update.js +++ b/build/update.js @@ -7,6 +7,7 @@ const cwd = process.cwd(); async function main() { try { + await execute('git', ['submodule', 'update', '--init']); process.chdir('third_party/dawn'); await execute('git', ['pull', 'origin', 'main']); process.chdir(cwd);