-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No need to wrap git binary with process/exec #50
Labels
enhancement
New feature or request
Comments
This may need a change in bb, allowing you to call |
Or perhaps adding the project as |
jeroenvandijk
added a commit
to jeroenvandijk/bbin
that referenced
this issue
Jan 26, 2023
Test with ``` bb bbin install io.github.borkdude/carve --as carve-dev && cat $(which carve-dev) && carve-dev ; time carve-dev ``` 0.069 Vs bbin install io.github.borkdude/carve --as carve-wrapped && cat $(which carve-wrapped) && carve-wrapped ; time carve-wrapped 0.100
I think it works already, but need to fix some tests |
2 tasks
jeroenvandijk
added a commit
to jeroenvandijk/bbin
that referenced
this issue
Jan 26, 2023
-f might need —-deps-root like @borkdude mentioned here babashka#50 (comment)
jeroenvandijk
added a commit
to jeroenvandijk/bbin
that referenced
this issue
Jan 30, 2023
This reverts commit 5edad1f.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Like #46 scripts installed from a git dependency don't have to be called via process/exec. Instead, they can be called directly in combination with
babashka.deps/add-deps
.The time savings depend on your local hardware, but should be something like:
(Some background in a recent discussion around Carve)
The text was updated successfully, but these errors were encountered: