I have a gant script A with two targets
t1 – default target
t2 – another target
Even when I run
grails A t2
the default target is run? How can I run the non-default target?
I have tried grails A –target=’t2′ etc. but doesn’t work.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not sure if there’s a proper way to do it, but you can write a second script (“T2.groovy”) that loads this one and sets that target as its default, e.g.