浏览代码

fix `-nt` usage

frantzmiccoli 10 年之前
父节点
当前提交
9c11202fde
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/phing/phing.plugin.zsh

+ 1 - 1
plugins/phing/phing.plugin.zsh

@@ -1,6 +1,6 @@
 _phing_does_target_list_need_generating () {
   [ ! -f .phing_targets ] && return 0;
-  [ .phing_targets -nt build.xml ] && return 0;
+  [ build.xml -nt .phing_targets ] && return 0;
   return 1;
 }