Skip to content

Commit

Permalink
Merge branch 'branches/rudder/2.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
fanf committed Oct 9, 2014
2 parents 71d0589 + 51db582 commit 4195abf
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ class GitActiveTechniqueCategoryArchiverImpl(
for {
//don't forget to delete the category *directory*
deleted <- tryo {
FileUtils.forceDelete(uptcFile.getParentFile)
FileUtils.forceDelete(uptcFile)
logger.debug("Deleted archived technique library category: " + uptcFile.getPath)
}
commited <- gitCommit match {
Expand Down Expand Up @@ -616,7 +616,7 @@ class GitNodeGroupArchiverImpl(
for {
//don't forget to delete the category *directory*
deleted <- tryo {
FileUtils.forceDelete(ngcFile.getParentFile)
FileUtils.forceDelete(ngcFile)
logger.debug("Deleted archived node group category: " + ngcFile.getPath)
}
commited <- gitCommit match {
Expand Down Expand Up @@ -721,7 +721,7 @@ class GitNodeGroupArchiverImpl(
for {
//don't forget to delete the category *directory*
deleted <- tryo {
FileUtils.forceDelete(ngFile.getParentFile)
FileUtils.forceDelete(ngFile)
logger.debug("Deleted archived node group: " + ngFile.getPath)
}
commited <- gitCommit match {
Expand Down

0 comments on commit 4195abf

Please sign in to comment.