fix unmatched " in gulp plugin

fixes source error
.oh-my-zsh/plugins/gulp/gulp.plugin.zsh:8: unmatched "
This commit is contained in:
Victor Häggqvist 2015-09-30 23:15:28 +02:00
commit 0b6f75c55a

View file

@ -20,7 +20,7 @@
# in the current directory. # in the current directory.
# #
function $$gulp_completion() { function $$gulp_completion() {
compls=$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)" compls=$(grep -Eo "gulp.task\((['\"](([a-zA-Z0-9]|-)*)['\"],)" gulpfile.js 2>/dev/null | grep -Eo "['\"](([a-zA-Z0-9]|-)*)['\"]" | sed s/"['\"]"//g | sort)
completions=(${=compls}) completions=(${=compls})
compadd -- $completions compadd -- $completions