Skip to content

Commit

Permalink
Fix bug in plugin
Browse files Browse the repository at this point in the history
The "validate" command was not given after the "from" clause

Signed-off-by: reidspencer <reid.spencer@yoppworks.com>
  • Loading branch information
reid-spencer committed Sep 25, 2023
1 parent 81f2449 commit 1921fc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ object RiddlSbtPlugin extends AutoPlugin {
val execPath = riddlcPath.value
val conf = riddlcConf.value.getAbsoluteFile.toString
val version = riddlcMinVersion.value
runRiddlc(execPath, Seq("from", conf), version)
runRiddlc(execPath, Seq("from", conf, "validate"), version)
},
infoTask := {
val execPath = riddlcPath.value
Expand Down

0 comments on commit 1921fc7

Please sign in to comment.