问题
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