Skip to content

Commit 83451fd

Browse files
committed
Diagnostic for failed Wix compilation
1 parent cd61713 commit 83451fd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ on_success:
3131

3232
on_failure:
3333
- ps: postCommitStatus "failure"
34+
- cmd: type target\windows\scala.wxs
3435

3536
cache:
3637
- C:\sbt

project/Wix.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ object Wix {
3939
// enable -Xfatal-warnings again in scalacOptions in project/plugins.sbt
4040
val (bin, binDirXml0) = generateComponentsAndDirectoryXml(stage / "bin")
4141
val (doc, docDirXml) = generateComponentsAndDirectoryXml(stage / "doc", "doc_")
42-
val (lib, libDirXml) = generateComponentsAndDirectoryXml(stage / "lib")
42+
val (lib, libDirXml) = generateComponentsAndDirectoryXml(stage / "lib", "lib_")
4343
val (api, apiDirXml) = generateComponentsAndDirectoryXml(stageApi / "api", "api_")
4444

4545
// add component that adds bin folder to path

0 commit comments

Comments
 (0)