1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-11 00:10:08 +00:00

fix -nt usage

This commit is contained in:
frantzmiccoli 2014-06-13 20:28:37 +02:00
parent a7c88c988a
commit 9c11202fde

View file

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