Skip to content

Commit

Permalink
Merge pull request #41 from PhilippSalvisberg/develop
Browse files Browse the repository at this point in the history
Fix for issue #40
  • Loading branch information
PhilippSalvisberg committed Oct 21, 2018
2 parents b512d0f + 08836e9 commit 02cfa2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sqldev/pom.xml
Expand Up @@ -5,7 +5,7 @@
<!-- The Basics -->
<groupId>org.utplsql</groupId>
<artifactId>org.utplsql.sqldev</artifactId>
<version>0.6.0</version>
<version>0.6.1</version>
<packaging>bundle</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
Expand Up @@ -77,7 +77,7 @@ class CodeCoverageReporter {
logger.fine('''Running code coverage reporter for «pathList»...''')
val dal = new UtplsqlDao(conn)
val content = dal.htmlCodeCoverage(pathList, toStringList(schemas), toStringList(includeObjects), toStringList(excludeObjects))
val file = File.createTempFile("utplsql_", "html")
val file = File.createTempFile("utplsql_", ".html")
logger.fine('''Writing result to «file.absolutePath»...''')
Files.write(Paths.get(file.absolutePath), content.split(System.lineSeparator), StandardCharsets.UTF_8);
val url = file.toURI().toURL().toExternalForm()
Expand Down

0 comments on commit 02cfa2f

Please sign in to comment.