Browse Source

Update _capistrano

Add use of Capfile commands
RomainBelorgey 12 years ago
parent
commit
20fe5e6a57
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/capistrano/_capistrano

+ 1 - 1
plugins/capistrano/_capistrano

@@ -1,7 +1,7 @@
 #compdef cap
 #autoload
 
-if [ -f config/deploy.rb ]; then
+if [[ -f config/deploy.rb || -f Capfile ]]; then
   if [[ ! -f .cap_tasks~ || config/deploy.rb -nt .cap_tasks~ ]]; then
     echo "\nGenerating .cap_tasks~..." > /dev/stderr
     cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~