Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #170 from github/windows_message
Print path to file instead of file contents
Robert authored and GitHub committed Sep 7, 2020

Unverified

No user is associated with the committer email.
2 parents 8c43427 + c689371 commit 556aed4
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
@@ -164,9 +164,9 @@ program
.join('\n');
fs.writeFileSync(powershellEnvFile, powershellEnvFileContents);

logger.info(`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFileContents}" and "${powershellEnvFile}". ` +
logger.info(`\nCodeQL environment output to "${jsonEnvFile}", "${batEnvFile}" and "${powershellEnvFile}". ` +
`Please export these variables to future processes so the build can be traced. ` +
`If using cmd/batch run "call ${batEnvFileContents}" ` +
`If using cmd/batch run "call ${batEnvFile}" ` +
`or if using PowerShell run "cat ${powershellEnvFile} | Invoke-Expression".`);

} else {

0 comments on commit 556aed4

Please sign in to comment.