Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
ccc86dae
Commit
ccc86dae
authored
Sep 26, 2015
by
Robby Russell
Browse files
Merge pull request #4375 from PrestanceDesign/capistrano-plugin-fix
Fix capistrano problem when generating autocompletion
parents
a8617192
1bb2715b
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/capistrano/_capistrano
View file @
ccc86dae
...
@@ -14,7 +14,7 @@ _arguments -C \
...
@@ -14,7 +14,7 @@ _arguments -C \
_cap_tasks() {
_cap_tasks() {
if [[ -f config/deploy.rb || -f Capfile ]]; then
if [[ -f config/deploy.rb || -f Capfile ]]; then
if [[ ! -f .cap_tasks~ ]]; then
if [[ ! -f .cap_tasks~ ]]; then
shipit
-v
--tasks | sed 's/\(\[\)\(.*\)\(\]\)/\2:/' | awk '{command=$2; $1=$2=$3=""; gsub(/^[ \t\r\n]+/, "", $0); gsub(":", "\\:", command); print command"["$0"]"}' > .cap_tasks~
shipit --tasks | sed 's/\(\[\)\(.*\)\(\]\)/\2:/' | awk '{command=$2; $1=$2=$3=""; gsub(/^[ \t\r\n]+/, "", $0); gsub(":", "\\:", command); print command"["$0"]"}' > .cap_tasks~
fi
fi
OLD_IFS=$IFS
OLD_IFS=$IFS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment