-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v1.1.0 Features - garden ls now displays information about trees, groups, gardens and commands. - garden ls -c (i.e. --no-commands) hides command details from the output. - garden plant -s (i.e. --sort) sorts all of the configured trees entries after planting the specified trees. - garden exec -n (i.e. --dry-run) performs a trial run without executing any commands. - garden.shell-errexit can now be configured to false in garden.yaml to opt-out of using the -e exit-on-error shell option when running custom commands. - garden.shell can now be configured to bun, fish, node, perl and python3 in addition to the traditional bash, zsh, dash, ksh and sh shells. This allows you to use these interpreters to run custom commands. Development: - Garden is now using shellexpand v3.
- Loading branch information
Showing
3 changed files
with
153 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# $NetBSD: Makefile,v 1.5 2023/12/28 20:45:02 pin Exp $ | ||
# $NetBSD: Makefile,v 1.6 2024/01/16 21:27:13 pin Exp $ | ||
|
||
DISTNAME= garden-1.0.0 | ||
DISTNAME= garden-1.1.0 | ||
CATEGORIES= devel | ||
MASTER_SITES= ${MASTER_SITE_GITLAB:=garden-rs/garden/-/archive/v1.0.0/} | ||
MASTER_SITES= ${MASTER_SITE_GITLAB:=garden-rs/garden/-/archive/v1.1.0/} | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= https://garden-rs.gitlab.io/ | ||
|
@@ -11,7 +11,7 @@ LICENSE= mit | |
|
||
.include "cargo-depends.mk" | ||
|
||
WRKSRC= ${WRKDIR}/garden-v1.0.0-59adc8e15f8c1fbf00ba48ad3a88cdaa7414f2e2 | ||
WRKSRC= ${WRKDIR}/garden-v1.1.0-0c530fa4942bf43c389df25a7306ec9fc59cb970 | ||
|
||
.include "../../lang/rust/cargo.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.