diff --git a/README.md b/README.md index 0beb962..f576650 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,9 @@ Contributions to the GeneXus-KBBuilder-Shared-Library are not currently being ac Thank you for your understanding! ## Versions +- v2.0.4 + - Added delete before docker context for packageAngularDU method. + - v2.0.3 - Add flag: cleanCustomSpecialFolders in intallGeneXusUsingURI to prevent unchecked accumulation of generated genexus installation directories diff --git a/vars/packageAngularDU.groovy b/vars/packageAngularDU.groovy index 0bbd201..df50d93 100644 --- a/vars/packageAngularDU.groovy +++ b/vars/packageAngularDU.groovy @@ -62,6 +62,10 @@ def call(Map args = [:]) { def packageLocationPath = "${args.localKBPath}\\${args.targetPath}\\IntegrationPipeline\\${args.duName}" echo "[DEBUG] packageLocationPath::${packageLocationPath}" + powershell script: """ + if(Test-Path -Path "${packageLocationPath}") { Remove-Item -Path "${packageLocationPath}" -Recurse -Force} + New-Item -Path "${packageLocationPath}" -ItemType Directory -Force | Out-Null + """ bat script: """ "${args.msbuildExePath}" "${args.gxBasePath}\\CreateFrontendPackage.msbuild" \