Skip to content

Commit

Permalink
direnvrc: avoid exit 1 when parsing devenv.yaml fails
Browse files Browse the repository at this point in the history
  • Loading branch information
bobvanderlinden committed Mar 7, 2023
1 parent 555f210 commit 95f329d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion direnvrc
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ use_devenv() {
if [[ -f "$flake_dir/devenv.yaml" ]]; then
if ! devenv assemble; then
log_error "$(devenv version) failed to parse devenv.yaml, make sure to use version 0.6 or newer and fix the errors above."
exit 1
exit 0
fi

if [[ -f "$flake_dir/.devenv/imports.txt" ]]; then
Expand Down

0 comments on commit 95f329d

Please sign in to comment.