summaryrefslogtreecommitdiff
path: root/plugins/phing
diff options
context:
space:
mode:
authorJesse Donat <donatj@gmail.com>2016-07-15 14:30:09 -0500
committerGitHub <noreply@github.com>2016-07-15 14:30:09 -0500
commitbfbfef9fcf87cfb8ecab8b3ee13a27a9f7e392ae (patch)
tree71266ae9df7423c8b455487dd77b0ca008fe6d2d /plugins/phing
parent96a2092e377139fbcd95d7b7ac703b740daa22f6 (diff)
downloadzsh-bfbfef9fcf87cfb8ecab8b3ee13a27a9f7e392ae.tar.gz
zsh-bfbfef9fcf87cfb8ecab8b3ee13a27a9f7e392ae.tar.bz2
zsh-bfbfef9fcf87cfb8ecab8b3ee13a27a9f7e392ae.zip
Cleans up phing plugin.
Diffstat (limited to 'plugins/phing')
-rw-r--r--plugins/phing/phing.plugin.zsh11
1 files changed, 1 insertions, 10 deletions
diff --git a/plugins/phing/phing.plugin.zsh b/plugins/phing/phing.plugin.zsh
index 1f022047c..60f59c3b0 100644
--- a/plugins/phing/phing.plugin.zsh
+++ b/plugins/phing/phing.plugin.zsh
@@ -1,15 +1,6 @@
-_phing_does_target_list_need_generating () {
- [ ! -f .phing_targets ] && return 0;
- [ build.xml -nt .phing_targets ] && return 0;
- return 1;
-}
-
_phing () {
if [ -f build.xml ]; then
- if _phing_does_target_list_need_generating; then
- phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}' > .phing_targets
- fi
- compadd `cat .phing_targets`
+ compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}')
fi
}