Skip to content

Commit

Permalink
Merge pull request #110 from ivanmolodec/delete-dir-filepath
Browse files Browse the repository at this point in the history
Исправлена ошибка при передаче FilePath в deleteDir()
  • Loading branch information
nixel2007 authored Feb 14, 2024
2 parents df9515f + 9494cdb commit 1a0b5cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 @@ -41,8 +41,8 @@ class EdtToDesignerFormatTransformation implements Serializable {
def configurationRoot = FileUtils.getFilePath("$env.WORKSPACE/$CONFIGURATION_DIR")
def edtVersionForRing = EDT.ringModule(config)

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

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

Expand Down

0 comments on commit 1a0b5cb

Please sign in to comment.