Skip to content

Commit

Permalink
devonfw#13: fix merge error and bug in Aws.moveAndProcessExtraction
Browse files Browse the repository at this point in the history
  • Loading branch information
MattesMrzik committed Nov 13, 2023
1 parent d9f33a8 commit 42a008b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,6 @@ public void delete(Path path) {
} else {
deleteRecursive(path);
}
else {
deleteRecursive(path);
}
} catch (IOException e) {
throw new IllegalStateException("Failed to delete " + path, e);
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/main/java/com/devonfw/tools/ide/tool/aws/Aws.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private void makeExecutable(Path file) {
}

@Override
protected void moveAndProcessExtraction(Path to, Path from) {
protected void moveAndProcessExtraction(Path from, Path to) {

if (!this.context.getSystemInfo().isLinux()) {
this.context.getFileAccess().move(from, to);
Expand Down

0 comments on commit 42a008b

Please sign in to comment.