Don't use sed gnu extension, use POSIX syntax
This commit is contained in:
parent
a500a4e5d2
commit
73505e4768
|
@ -137,7 +137,7 @@ _yarn_add_files() {
|
||||||
}
|
}
|
||||||
|
|
||||||
_yarn_workspaces() {
|
_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
|
_describe 'workspace' workspaces
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue