Skip to content

Commit

Permalink
fix: azz's bad justfile skills
Browse files Browse the repository at this point in the history
  • Loading branch information
Zk2u committed Sep 17, 2024
1 parent 9be33a8 commit fabdc11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ enable-hooks:
pre-commit: fmt clippy t

html-solver:
cargo r -p html-solver
cd utils/html-solver && \
cargo r

2 comments on commit fabdc11

@storopoli
Copy link
Member

@storopoli storopoli commented on fabdc11 Sep 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this leaves the user in the utils/html-solver dir after executed and stopped?
If yes, then it should bring the user back.
@Zk2u

@Zk2u
Copy link
Collaborator Author

@Zk2u Zk2u commented on fabdc11 Sep 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No it doesn't, just recipes are sandboxed shells I believe. Anything that happens inside the recipe doesn't leak out.

Please sign in to comment.