Skip to content

Commit

Permalink
Merge branch '4.4' into 5.4
Browse files Browse the repository at this point in the history
* 4.4:
  [Workflow] Fix deprecated syntax for interpolated strings
  • Loading branch information
nicolas-grekas committed May 6, 2022
2 parents 4f43a3f + 3aac1c4 commit 0697438
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Command/DumpCompletionCommand.php
Expand Up @@ -53,7 +53,7 @@ protected function configure()
Dump the script to a global completion file and restart your shell:
<info>%command.full_name% bash | sudo tee /etc/bash_completion.d/${commandName}</>
<info>%command.full_name% bash | sudo tee /etc/bash_completion.d/{$commandName}</>
Or dump the script to a local file and source it:
Expand All @@ -70,7 +70,7 @@ protected function configure()
Add this to the end of your shell configuration file (e.g. <info>"~/.bashrc"</>):
<info>eval "$(${fullCommand} completion bash)"</>
<info>eval "$({$fullCommand} completion bash)"</>
EOH
)
->addArgument('shell', InputArgument::OPTIONAL, 'The shell type (e.g. "bash"), the value of the "$SHELL" env var will be used if this is not given')
Expand Down

0 comments on commit 0697438

Please sign in to comment.