How to execute a command in windows cmd using Gradle?

12,745

Ok I got the issue . Looks like for windows, we have to write like this

     task runLSBuild(type:Exec) {
    workingDir '../outer_build'

    //on windows:
    commandLine "cmd","/c",'.\\build\\build.exe parse /p 246 /o ".\\strings.xml.bcg" /novalidate /l 1033 /sr "@LbaRoot@\\settings\\default\\lss\\default.config" "..\\app\\src\\main\\res\\values\\strings.xml"'
}
Share:
12,745
Abhik
Author by

Abhik

Updated on June 12, 2022

Comments

  • Abhik
    Abhik almost 2 years

    I am trying to execute this command using Gradle .

    .\build\build.exe parse /p 246 /o ".\strings.xml.bcg" /novalidate /l 1033 /sr "@LbaRoot@\settings\default\lss\default.config" "..\app\src\main\res\values\strings.xml"
    

    This works fine when I execute in command Line. I am trying to replicate the behaviour using Gradle

        task runLSBuild(type:Exec) {
        workingDir '../outer_build'
    
        //on windows:
        commandLine '.\\build\\build.exe','parse /p 246 /o ".\\strings.xml.bcg" /novalidate /l 1033 /sr "@LbaRoot@\\settings\\default\\lss\\default.config" "..\\app\\src\\main\\res\\values\\strings.xml"'
    }
    

    But this fails with error ".\build\build.exe", The system cannot find the file specified. I need to run the program with working directory as outer_build.

    Any suggestions on where am I going wrong ?