Skip to content

Commit

Permalink
update rust; update unmake
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Pennebaker committed Jan 6, 2024
1 parent 53ce24d commit 01e9731
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
golang 1.21.5
nodejs 20.10.0
rust 1.68.2
rust 1.75.0
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* [Go](https://golang.org/) 1.21.5+
* [Node.js](https://nodejs.org/en) 20.10.0+
* [Docker](https://www.docker.com/) 20.10.12+
* [Rust](https://www.rust-lang.org/) 1.68.2+
* [Rust](https://www.rust-lang.org/) 1.75.0+
* a POSIX compliant [make](https://pubs.opengroup.org/onlinepubs/9699919799/utilities/make.html) implementation (e.g. GNU make, BSD make, etc.)
* Provision additional dev tools with `make`

Expand Down
10 changes: 9 additions & 1 deletion magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,15 @@ func Nakedret() error { return mageextras.Nakedret("-l", "0") }
func Staticcheck() error { return mageextras.Staticcheck() }

// Unmake runs unmake.
func Unmake() error { return mageextras.Unmake(".") }
func Unmake() error {
err := mageextras.Unmake(".")

if err != nil {
return err
}

return mageextras.Unmake("-n", ".")
}

// Lint runs the lint suite.
func Lint() error {
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
.PHONY: all

all:
cargo install --force [email protected].12
cargo install --force [email protected].15

go install github.com/alexkohler/[email protected]
go install github.com/kisielk/[email protected]
Expand Down

0 comments on commit 01e9731

Please sign in to comment.