Skip to content

Commit

Permalink
This commit fixes issue kriasoft#32 (kriasoft#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffyBucket authored and jiangzm committed Jan 15, 2020
1 parent 31ba853 commit 9affc4f
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 9affc4f

Please sign in to comment.