gpt4 book ai didi

gradle - Gradle 1.2-在Linux上运行正常但在Windows上不运行的任务

转载 作者:行者123 更新时间:2023-12-03 04:44:19 25 4
gpt4 key购买 nike

有谁知道为什么buildJsbFile任务在Linux上可以正常运行,但是buildJsbFileWin在Windows上不能运行?提前致谢。

task removeJsbFile(type: Delete) {
delete 'src/main/webapp/app.jsb3'
}

task buildJsbFile(type:Exec, dependsOn: removeJsbFile) {
workingDir 'src/main/webapp'
executable 'sencha'
args 'create jsb -a `http://localhost:8780/login` -p app.jsb3'
}

task buildJsbFileWin(type:Exec, dependsOn: removeJsbFile) {
workingDir 'src/main/webapp'
executable 'sencha'
args 'create jsb -a `http://localhost:8780/login` -p app.jsb3'
}

链接实际上没有`字符,我不得不使用它来发布此问题

最佳答案

好的,因此感谢Peter Niederwieser,我设法解决了这个问题。

都失败了,因为我需要:

  • 拆分args字符串('create jsb -a http://localhost:8780/login -p app.jsb3'.split(“”))
  • 将可执行文件从“sencha”更改为“sencha.bat”。

  • 谢谢大家,特别感谢Peter。

    关于gradle - Gradle 1.2-在Linux上运行正常但在Windows上不运行的任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18873372/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com