Skip to content

Commit

Permalink
escape backslashes
Browse files Browse the repository at this point in the history
  • Loading branch information
milesziemer committed Aug 9, 2024
1 parent 3bd4554 commit e4dc27c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ private static String getSmithyFilePattern(Path path, boolean isWatcherPattern)
glob += ".{smithy,json}";
}

return glob;
return glob.replace("\\", "\\\\");
}
}

0 comments on commit e4dc27c

Please sign in to comment.