Skip to content

Commit

Permalink
replaced non-ascii single quote with ascii single quote (#5102)
Browse files Browse the repository at this point in the history
  • Loading branch information
YannickWeber committed Mar 8, 2022
1 parent 5f7ded3 commit affaf19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ protected void containerIsStarted(final @NotNull InspectContainerResponse contai
}

if (!file.exists()) {
throw new ContainerLaunchException("File '" + mountableFile.getFilesystemPath() + " does not exist.");
throw new ContainerLaunchException("File '" + mountableFile.getFilesystemPath() + "' does not exist.");
}
final String containerPath = "/opt/hivemq" + PathUtil.prepareAppendPath(pathInHomeFolder);
withCopyFileToContainer(cloneWithFileMode(mountableFile), containerPath);
Expand Down

0 comments on commit affaf19

Please sign in to comment.