Skip to content

Commit

Permalink
Исправлена ошибка при передаче FilePath в deleteDir()
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Smirnov committed Feb 14, 2024
1 parent df9515f commit 9494cdb
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 9494cdb

Please sign in to comment.