Skip to content

Commit

Permalink
Fix git diff command.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olafur Pall Geirsson committed Sep 24, 2019
1 parent 7c0be6f commit fe8d10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/GitHubActionsPlugin.scala
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ object GitHubActionsPlugin extends AutoPlugin {
githubActionsWorkflow := ujson.Obj(),
githubActionsCheck := {
githubActionsGenerate.value
val exit = List("git", "diff", ".github/workflows", "--exit-code").!
val exit = List("git", "diff", "--exit-code", ".github/workflows").!
require(
exit == 0,
"build is not in sync with the CI matrix. " +
Expand Down

0 comments on commit fe8d10e

Please sign in to comment.