Is urlToOpen an existing property? I have the foll...
# gradle
n
Is urlToOpen an existing property? I have the following exec task defined in the build file:
Copy code
task runProgram(type: Exec) {
    def url = '<http://localhost:63342/notifier-sample/web/index.html>'

    dependsOn 'transpileToJs'
    workingDir "${projectDir.absolutePath}/web"
    args url
    commandLine 'google-chrome'
}