mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-16 08:36:50 +01:00
fix hello task - use doLast
This commit is contained in:
@@ -1,5 +1,9 @@
|
|||||||
task hello {
|
task hello {
|
||||||
|
// Loaded in configuration phase
|
||||||
description = "Say Hello :-)"
|
description = "Say Hello :-)"
|
||||||
println "Hello FI MUNI!"
|
doLast {
|
||||||
|
// Executed in execution phase
|
||||||
|
println "Hello FI MUNI!"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user