Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Segate-ekb authored Feb 20, 2024
2 parents 5088976 + 1a0b5cb commit ca6a31e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DesignerToEdtFormatTransformation implements Serializable {
def configurationRoot = FileUtils.getFilePath("$env.WORKSPACE/$srcDir")
def edtVersionForRing = EDT.ringModule(config)

steps.deleteDir(workspaceDir)
steps.deleteDir(workspaceDir.getRemote())

Logger.println("Конвертация исходников из формата конфигуратора в формат EDT")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ class EdtToDesignerFormatTransformation implements Serializable {
String extensionRoot = FileUtils.getFilePath("$env.WORKSPACE/$EXTENSION_DIR")
def edtVersionForRing = EDT.ringModule(config)

steps.deleteDir(workspaceDir)
steps.deleteDir(workspaceDir.getRemote())
steps.deleteDir(configurationRoot.getRemote())

transformConfiguration(steps, projectDir, projectWorkspaceDir, configurationRoot, edtVersionForRing)
transformExtensions(steps, workspaceDir, extensionRoot, edtVersionForRing)
Expand Down

0 comments on commit ca6a31e

Please sign in to comment.