-
-
Notifications
You must be signed in to change notification settings - Fork 109
Forward unmodified ARGV to subcommand #631
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
Merged
straight-shoota
merged 4 commits into
crystal-lang:master
from
luislavena:forward-argv-subcommand
Aug 15, 2024
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
776a7c0
Pass all ARGV arguments verbatim to subcommand
luislavena 5a6dc6c
Fixes passing --help to subcommand
luislavena 49ac767
Only use dummy executable on Windows
luislavena 0375af5
Avoid usage of class properties to handle help behavior
luislavena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| require "./spec_helper" | ||
|
|
||
| describe "subcommand" do | ||
| it "forwards all arguments to subcommand" do | ||
| create_shard("dummy", "0.1.0") | ||
| {% if flag?(:win32) %} | ||
| create_executable "dummy", "bin/shards-dummy", %(print ARGV.join(" ")) | ||
| {% else %} | ||
| path = create_file("dummy", "bin/shards-dummy", "#!/bin/sh\necho $@\n") | ||
| File.chmod(path, 0o755) | ||
| {% end %} | ||
|
|
||
| with_path(git_path("dummy/bin")) do | ||
| output = run("shards dummy --no-color --verbose --unknown other argument") | ||
| output.should contain(%(--no-color --verbose --unknown other argument)) | ||
| end | ||
| end | ||
|
|
||
| it "correctly forwards '--help' option to subcommand" do | ||
| create_shard("dummy", "0.1.0") | ||
| {% if flag?(:win32) %} | ||
| create_executable "dummy", "bin/shards-dummy", %(print ARGV.join(" ")) | ||
| {% else %} | ||
| path = create_file("dummy", "bin/shards-dummy", "#!/bin/sh\necho $@\n") | ||
| File.chmod(path, 0o755) | ||
| {% end %} | ||
|
|
||
| with_path(git_path("dummy/bin")) do | ||
| output = run("shards dummy --help") | ||
| output.should contain(%(--help)) | ||
| end | ||
| end | ||
| end | ||
|
|
||
| private def with_path(path) | ||
| old_path = ENV["PATH"] | ||
| ENV["PATH"] = "#{File.expand_path(path)}#{Process::PATH_DELIMITER}#{ENV["PATH"]}" | ||
| yield | ||
| ensure | ||
| ENV["PATH"] = old_path | ||
| end |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.