Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
branches:
only:
- testappveyor

environment:
matrix:
- nodejs_version: "6"

install:
- ps: Install-Product node $env:nodejs_version
- npm install

test_script:
- node --version
- npm --version
- npm run test

build: off
2 changes: 1 addition & 1 deletion lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ module.exports = {

if (process.platform === 'win32') {
const binaryExt = path.extname(this.binary);
const mainModule = process.mainModule.filename;
const mainModule = process.env.APPVEYOR ? '_fixture' : process.mainModule.filename;

full = `${mainModule}-${subCommand}`;

Expand Down