gui-com-pt / ken

Project automation tool written in hacklang
GNU General Public License v2.0
0 stars 0 forks source link

Tasks aliases not working #1

Open gui-com-pt opened 8 years ago

gui-com-pt commented 8 years ago

Tasks aliases are not working

$task('first', function() { println('first executed'); });
$task('second', first');
bin/ken second

Expected: Execute first task. Actual: Doesn't execute, despite the fact that dependencies contains the name of task and TaskController contains it.

gui-com-pt commented 8 years ago

Aliases are working but only with arrays. If a string is passed, the aliases doesn't execute.

This was fixed at #2