Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0697438

Browse files
Merge branch '4.4' into 5.4
* 4.4: [Workflow] Fix deprecated syntax for interpolated strings
2 parents 4f43a3f + 3aac1c4 commit 0697438

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Command/DumpCompletionCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ protected function configure()
5353
5454
Dump the script to a global completion file and restart your shell:
5555
56-
<info>%command.full_name% bash | sudo tee /etc/bash_completion.d/${commandName}</>
56+
<info>%command.full_name% bash | sudo tee /etc/bash_completion.d/{$commandName}</>
5757
5858
Or dump the script to a local file and source it:
5959
@@ -70,7 +70,7 @@ protected function configure()
7070
7171
Add this to the end of your shell configuration file (e.g. <info>"~/.bashrc"</>):
7272
73-
<info>eval "$(${fullCommand} completion bash)"</>
73+
<info>eval "$({$fullCommand} completion bash)"</>
7474
EOH
7575
)
7676
->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')

0 commit comments

Comments
 (0)