Skip to content

Commit

Permalink
Merge pull request #102 from GitWilburn/windows-install-bat-quotes
Browse files Browse the repository at this point in the history
quotes in dependency install paths
  • Loading branch information
rvion authored Dec 10, 2023
2 parents 5d739a1 + a56a305 commit 0374302
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 0374302

Please sign in to comment.