-
Notifications
You must be signed in to change notification settings - Fork 407
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
feature: Add a flag to set the directory to build/apply from #617
Labels
Comments
+1! See also golang/go#50332 |
Excellent news! I've created #619 - PTAL :) |
2 tasks
This issue is stale because it has been open for 90 days with no |
@tstromberg still want this? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'd like to run many
ko apply
commands in parallel, but have run into an issue: ko only applies to the current working directory, and there can be only one current working directory within a process.This means that a parent process has to fork, change working directory, and fork again to execute ko. This is easy in some languages, but not so easy if you are using bash or xargs to coordinate the work.
Since 4.3BSD, tar has included a similar flag that I would probably mimic:
If this sounds good, please let me know and I'll throw a PR your way.
The text was updated successfully, but these errors were encountered: