Skip to content

Commit

Permalink
Merge pull request #184 from udda1996/fix-error-message
Browse files Browse the repository at this point in the history
Fix the error message
  • Loading branch information
hevayo authored Dec 20, 2021
2 parents d0f3f36 + 1429b1a commit 52c6696
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/ballerinalang/command/util/ToolUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ private static void unzip(String zipFilePath, String destDirectory) {
entry = zipIn.getNextEntry();
}
} catch (IOException e) {
throw ErrorUtil.createCommandException("failed to unzip zip the file in '" + zipFilePath + "' to '" +
throw ErrorUtil.createCommandException("failed to unzip the zip file in '" + zipFilePath + "' to '" +
destDirectory + "'");
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ private static void unzip(String zipFilePath, String destDirectory) {
entry = zipIn.getNextEntry();
}
} catch (IOException e) {
OUT.println("failed to unzip zip the file in '" + zipFilePath + "' to '" + destDirectory + "'");
OUT.println("failed to unzip the zip file in '" + zipFilePath + "' to '" + destDirectory + "'");
}
}

Expand Down

0 comments on commit 52c6696

Please sign in to comment.