Skip to content

Commit

Permalink
[Build] Fix Windows Node path (#188271)
Browse files Browse the repository at this point in the history
## Summary

Closes #188175

This path wasn't updated as part of #184675
  • Loading branch information
Ikuni17 authored Jul 15, 2024
1 parent 25916ff commit 58c82e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dev/build/tasks/bin/scripts/kibana-setup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SETLOCAL ENABLEDELAYEDEXPANSION
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set DIR=%%~dpfI

set NODE=%DIR%\node\node.exe
set NODE=%DIR%\node\default\node.exe
set NODE_ENV=production

If Not Exist "%NODE%" (
Expand Down
2 changes: 1 addition & 1 deletion src/dev/build/tasks/bin/scripts/kibana.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SETLOCAL ENABLEDELAYEDEXPANSION
set SCRIPT_DIR=%~dp0
for %%I in ("%SCRIPT_DIR%..") do set DIR=%%~dpfI

set NODE=%DIR%\node\node.exe
set NODE=%DIR%\node\default\node.exe
set NODE_ENV=production

If Not Exist "%NODE%" (
Expand Down

0 comments on commit 58c82e8

Please sign in to comment.