We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea9f39 commit 9db6202Copy full SHA for 9db6202
eng/SourceBuild.props
@@ -107,9 +107,15 @@
107
Command="npm --version"
108
WorkingDirectory="$(InnerSourceBuildRepoRoot)" />
109
110
+ <PropertyGroup>
111
+ <!-- Disable installing puppeteer browsers when running in source build -->
112
+ <_AdditionalEnvironmentVariable Condition="$(ArcadeBuildFromSource) == 'true'">PUPPETEER_SKIP_DOWNLOAD=1</_AdditionalEnvironmentVariable>
113
+ </PropertyGroup>
114
+
115
<Exec
116
Command="npm ci --offline"
- WorkingDirectory="$(InnerSourceBuildRepoRoot)" />
117
+ WorkingDirectory="$(InnerSourceBuildRepoRoot)"
118
+ EnvironmentVariables="$(_AdditionalEnvironmentVariable)" />
119
120
</Target>
121
0 commit comments