unzip file is not working in jenkins pipeline script

帅比萌擦擦* 提交于 2020-06-09 07:05:28

问题


i am trying to unzip files in my Jenkins pipeline script.but t dint work.Below is my jenkins pipeline code

 stage('unzip')
        {

            steps{
                script
                {

        unzip dir: 'E:\\package', glob: '', zipFile: 'test.zip'
                }


            }
        }

i am getting error while running the code in my pipeline.How to resolve the issue. I am getting error "java.io.IOException" file not found

来源:https://stackoverflow.com/questions/61862780/unzip-file-is-not-working-in-jenkins-pipeline-script

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!