diff options
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r-- | scripts/smoke/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js index 354147cd6..d231b5e5d 100644 --- a/scripts/smoke/index.js +++ b/scripts/smoke/index.js @@ -47,6 +47,7 @@ async function run() { try { await execa('pnpm', ['install', '--ignore-scripts', '--frozen-lockfile=false', isExternal ? '--shamefully-hoist' : ''].filter(x => x), { cwd: fileURLToPath(directory), stdio: 'inherit' }); + await execa('pnpm', ['astro', 'telemetry', 'disable']); await execa('pnpm', ['run', 'build'], { cwd: fileURLToPath(directory), stdio: 'inherit' }); } catch (err) { console.log(err); |