Skip to content

Commit

Permalink
quotes in dependency install paths
Browse files Browse the repository at this point in the history
  • Loading branch information
GitWilburn committed Dec 10, 2023
1 parent 5d739a1 commit a56a305
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _windows_INSTALL.bat
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ IF NOT EXIST "%PNPM_BIN_PATH%" (

:: Install dependencies using pnpm
ECHO Installing dependencies...
CALL %PNPM_BIN_PATH% install
CALL "%PNPM_BIN_PATH%" install
IF ERRORLEVEL 1 (
ECHO Installing dependencies: node-gyp first...
CALL %PNPM_BIN_PATH% remove better-sqlite3
CALL %PNPM_BIN_PATH% install node-gyp
CALL %PNPM_BIN_PATH% install better-sqlite3
CALL %PNPM_BIN_PATH% install
CALL "%PNPM_BIN_PATH%" remove better-sqlite3
CALL "%PNPM_BIN_PATH%" install node-gyp
CALL "%PNPM_BIN_PATH%" install better-sqlite3
CALL "%PNPM_BIN_PATH%" install
)

:: ensuring binary dependencies are correctly linked across installed
Expand Down

0 comments on commit a56a305

Please sign in to comment.