Skip to content

Commit

Permalink
Merge pull request #24 from carolynvs/fix-build-err
Browse files Browse the repository at this point in the history
Stop if a mixin build fails
  • Loading branch information
carolynvs authored Feb 23, 2023
2 parents 7451d19 + a914e00 commit 9593117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixins/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func (m Magefile) ConfigureAgent() {
// Build the mixin
func (m Magefile) Build() {
must.RunV("go", "mod", "tidy")
releases.BuildAll(m.Pkg, m.MixinName, m.BinDir)
mgx.Must(releases.BuildAll(m.Pkg, m.MixinName, m.BinDir))
}

// XBuildAll cross-compiles the mixin before a release
Expand Down

0 comments on commit 9593117

Please sign in to comment.