How to use env.BUILD_IS_PERSONAL
Hi,
How do I pass the variable env.BUILD_IS_PERSONAL as a parameter to a program.
Example : CALL myprog.bat %env.BUILD_IS_PERSONAL%
My custom script fails to execute my configuration because env.BUILD_IS_PERSONAL is not defined in my agent.
How do you use this variable?
Thank you in advance
Stéphane
Please sign in to leave a comment.
use call myprog.bat "%BUILD_IS_PERSONAL%" instead and e.g. use if "%~1" == "" in bat file. (See http://devnet.jetbrains.net/message/5451776#5451776 )