Skip to content

Commit

Permalink
Fixes yiisoft#15988: Fixed bash completion
Browse files Browse the repository at this point in the history
  • Loading branch information
alekciy authored and samdark committed Mar 27, 2018
1 parent da9cb57 commit af24cf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/completion/bash/yii
Original file line number Diff line number Diff line change
Expand Up @@ -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=...
Expand Down
2 changes: 1 addition & 1 deletion framework/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----------------------
Expand Down

0 comments on commit af24cf9

Please sign in to comment.