Browse Source

Fixes #15988: Fixed bash completion

tags/2.0.16
Сундуков Алексей 7 years ago committed by Alexander Makarov
parent
commit
af24cf9a93
  1. 2
      contrib/completion/bash/yii
  2. 2
      framework/CHANGELOG.md

2
contrib/completion/bash/yii

@ -42,7 +42,7 @@ _yii()
;;
option)
# fetch available options from ./yii help/list-action-options command
opts=$($yii help/list-action-options $command 2> /dev/null | grep -o '^--[a-zA-Z0-9]*')
opts=$($yii help/list-action-options $command 2> /dev/null | grep -o '^--[a-zA-Z0-9\-]*')
;;
value)
# TODO allow normal file completion after an option, e.g. --migrationPath=...

2
framework/CHANGELOG.md

@ -4,7 +4,7 @@ Yii Framework 2 Change Log
2.0.16 under development
------------------------
- no changes in this release.
- Bug #15988: Fixed bash completion (alekciy)
2.0.15.1 March 21, 2018
-----------------------

Loading…
Cancel
Save