Skip to content

Commit 6140268

Browse files
Fix build on Linux
Try and fix the build on Linux by executing the script.
1 parent d3cb4d1 commit 6140268

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ describe('aspnet-oauth:app', () => {
191191
if (process.platform === 'win32') {
192192
build = spawnSync('build.cmd', ['-test', '-pack', '-configuration', configuration], { cwd: tempDir });
193193
} else {
194-
build = spawnSync('build.sh', ['--test', '--pack', '--configuration', configuration], { cwd: tempDir });
194+
build = spawnSync('./build.sh', ['--test', '--pack', '--configuration', configuration], { cwd: tempDir });
195195
}
196196

197197
if (build.status !== 0 && build.output) {

0 commit comments

Comments
 (0)