Skip to content

Commit

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

Closes elastic#188175

This path wasn't updated as part of elastic#184675

(cherry picked from commit 58c82e8)
  • Loading branch information
Ikuni17 committed Jul 15, 2024
1 parent 1fadaaf commit b00592b
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 b00592b

Please sign in to comment.