Skip to content

Commit

Permalink
Merge pull request #105 from GitWilburn/windows-start-bat-quotes
Browse files Browse the repository at this point in the history
path quotes
  • Loading branch information
rvion authored Dec 11, 2023
2 parents de9ca71 + 7ecf527 commit 7bed791
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions _windows_START.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 7bed791

Please sign in to comment.