Skip to content

Commit

Permalink
fixed issue w/ default options - nodejs not liking 'undefined' as a d…
Browse files Browse the repository at this point in the history
…efault
  • Loading branch information
a11smiles committed Mar 17, 2016
1 parent fb79026 commit a373069
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ function transform(options) {
destination: './wwwroot/web.config',
netVersion: '4',
framework: 'x64',
msBuildPath: undefined,
assemblyFile: undefined
msBuildPath: '',
assemblyFile: ''
}, options);

if (!!options.msBuildPath) {
Expand Down

0 comments on commit a373069

Please sign in to comment.