我在windows系统中的jenkins中安装了管道实用程序插件,并尝试使用命令,如下所示
steps {
script {
def buildNumberProps = readProperties file: "(C:\\common\\\build.properties)"
}
}但是,我得到了下面的错误“C:\common\build.properties不存在”,省略了收集“”的属性
请求你的帮助
发布于 2020-05-12 19:01:31
file参数没有指定有效的文件路径。试一试:
def buildNumberProps = readProperties file: "C:\\common\\build.properties"https://stackoverflow.com/questions/61758461
复制相似问题