Skip to content

Commit

Permalink
This commit fixes issue #32 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffyBucket authored and koistya committed May 20, 2017
1 parent 16cb280 commit 505ba3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ tasks.set('build', () => {
.then(() => new Promise((resolve, reject) => {
const options = { stdio: ['ignore', 'inherit', 'inherit'] };
const config = global.DEBUG ? 'Debug' : 'Release';
const args = ['publish', 'server', '-o', 'build', '-c', config, '-r', 'coreclr'];
const args = ['publish', 'server', '-o', '../build', '-c', config];
cp.spawn('dotnet', args, options).on('close', code => {
if (code === 0) {
resolve();
Expand Down

0 comments on commit 505ba3a

Please sign in to comment.