public
Description: The Nu programming language.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nu.git
Fixed bug in nuke when displaying tasks where default task has no 
dependencies
jsallis (author)
Tue Aug 26 21:20:12 -0700 2008
commit  4945339baffa916b817fa0cb1a016df6b22a3817
tree    e69cf1a7d1fee20f02e4d8b534a977ce48b14be7
parent  351bde2abdcd8117da7f078f0da35a65cd281bef
...
890
891
892
893
 
894
895
896
...
890
891
892
 
893
894
895
896
0
@@ -890,7 +890,7 @@
0
     (puts "")
0
     
0
     (set defaultTask ((project tasks) objectForKey:"default"))
0
- (if (!= nil defaultTask)
0
+ (if (and defaultTask ((task dependencies) count))
0
         (puts "default task => #{(((task dependencies) 0) name)}")
0
         (puts ""))
0
     (exit 0))

Comments

    No one has commented yet.