Skip to content

Commit

Permalink
Attempt to install correct msnodesqlv8 on node 10+
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Nov 5, 2019
1 parent e8cc2b5 commit 0c76272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ install:
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
- npm install
- IF "%nodejs_version%" == "10" (npm install [email protected]) ELSE (npm install [email protected])
- IF %nodejs_version% GEQ 10 (npm install [email protected]) ELSE (npm install [email protected])

platform:
- x86
Expand Down

0 comments on commit 0c76272

Please sign in to comment.