Skip to content

Commit

Permalink
add newline to output
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Brignull committed Aug 26, 2020
1 parent 1c004b9 commit 1f2bd10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/runner.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/runner.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ program
.join('\n');
fs.writeFileSync(powershellEnvFile, powershellEnvFileContents);

logger.info(`CodeQL environment outputted to "${batEnvFileContents}" and "${powershellEnvFile}". ` +
logger.info(`\nCodeQL environment outputted to "${batEnvFileContents}" and "${powershellEnvFile}". ` +
`Please export these variables to future processes so the build can tbe traced. ` +
`If using cmd/batch run "call ${batEnvFileContents}" ` +
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`);
Expand All @@ -142,7 +142,7 @@ program
.join('\n');
fs.writeFileSync(envFile, envFileContents);

logger.info(`CodeQL environment outputted to "${envFile}". ` +
logger.info(`\nCodeQL environment outputted to "${envFile}". ` +
`Please export these variables to future processes so the build can tbe traced, ` +
`for example by running "source ${envFile}".`);
}
Expand Down

0 comments on commit 1f2bd10

Please sign in to comment.