Skip to content

Commit 02cfa2f

Browse files
Merge pull request #41 from PhilippSalvisberg/develop
Fix for issue #40
2 parents b512d0f + 08836e9 commit 02cfa2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sqldev/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- The Basics -->
66
<groupId>org.utplsql</groupId>
77
<artifactId>org.utplsql.sqldev</artifactId>
8-
<version>0.6.0</version>
8+
<version>0.6.1</version>
99
<packaging>bundle</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

sqldev/src/main/java/org/utplsql/sqldev/CodeCoverageReporter.xtend

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class CodeCoverageReporter {
7777
logger.fine('''Running code coverage reporter for «pathList»...''')
7878
val dal = new UtplsqlDao(conn)
7979
val content = dal.htmlCodeCoverage(pathList, toStringList(schemas), toStringList(includeObjects), toStringList(excludeObjects))
80-
val file = File.createTempFile("utplsql_", "html")
80+
val file = File.createTempFile("utplsql_", ".html")
8181
logger.fine('''Writing result to «file.absolutePath»...''')
8282
Files.write(Paths.get(file.absolutePath), content.split(System.lineSeparator), StandardCharsets.UTF_8);
8383
val url = file.toURI().toURL().toExternalForm()

0 commit comments

Comments
 (0)