Skip to content

Commit

Permalink
specify docs build parameter for nuke
Browse files Browse the repository at this point in the history
  • Loading branch information
goaaats authored Jun 29, 2024
1 parent fc46a37 commit 457897b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci-build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -104,14 +104,14 @@ for (const branch of Object.keys(versions)) {

// build Dalamud
if (isWindows) {
exec('.\\build.ps1 CompileDalamud -Configuration Release', {
exec('.\\build.ps1 CompileDalamud -Configuration Release --is-docs-build', {
cwd: branchDir,
shell: 'pwsh.exe',
...execOptions,
});
} else {
exec(
'bash ./build.sh CompileDalamud -Configuration Release /p:EnableWindowsTargeting=true',
'bash ./build.sh CompileDalamud -Configuration Release --is-docs-build /p:EnableWindowsTargeting=true',
{
cwd: branchDir,
...execOptions,
Expand Down

0 comments on commit 457897b

Please sign in to comment.