File tree Expand file tree Collapse file tree
plugin/src/main/java/io/snyk/eclipse/plugin/runner Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33## [ 2.2.0] - Unreleased
44### Changes
5+ - fixes the generated ignore id so that it is ignored during scanning
6+
7+ ## [ 2.2.0] - v20240529.110806
8+ ### Changes
59- require lsp4e 0.18.4 and lsp4j 0.22.0 as minimum versions (Eclipse 2024-03)
610- update release process & update sites to https://static.snyk.io/eclipse/preview and https://static.snyk.io/eclipse/stable
711
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public ProcessResult snykTest(File navigatePath) {
4747 }
4848
4949 public ProcessResult snykIgnore (String id , File navigatePath ) {
50- String idParam = "--id=' " + id + "' " ;
50+ String idParam = "--id=" + id + "" ;
5151
5252 return snykRun (Lists .of (IGNORE_PARAM , idParam ), Optional .of (navigatePath ));
5353 }
You can’t perform that action at this time.
0 commit comments