Merge pull request #715 from syohex/syohex/yarn-posix
Don't use sed gnu extension, use POSIX syntax
This commit is contained in:
commit
3d6bbc108e
|
@ -137,7 +137,7 @@ _yarn_add_files() {
|
|||
}
|
||||
|
||||
_yarn_workspaces() {
|
||||
local -a workspaces=(${(@f)$(yarn workspaces info |sed -n -r -e 's/^ "([^"]+)": \{/\1/p')})
|
||||
local -a workspaces=(${(@f)$(yarn workspaces info |sed -n -e 's/^ "\([^"]*\)": {/\1/p')})
|
||||
_describe 'workspace' workspaces
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue