Skip to content

Commit

Permalink
Merge pull request #4 from chrisjb82/main
Browse files Browse the repository at this point in the history
fix for issue #3
  • Loading branch information
metadatadriven authored Mar 13, 2023
2 parents a20cfae + c2ff4a0 commit 32c37a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified powerSAS.psd1
Binary file not shown.
4 changes: 2 additions & 2 deletions powerSAS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -471,14 +471,14 @@ parameters.
$log = ""
do {
$log = $script:session.LanguageService.FlushLog(1000)
Add-Content $logfilename -Value $log
Add-Content $logfilename -Value $log -NoNewline
} while ($log.Length -gt 0)

# flush the output
$list = ""
do {
$list = $script:session.LanguageService.FlushList(1000)
Add-Content $outfilename -Value $list
Add-Content $outfilename -Value $list -NoNewline
} while ($list.Length -gt 0)

# all done - final step is to return a summary of the sas logfile
Expand Down

0 comments on commit 32c37a9

Please sign in to comment.