File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
plugin/src/main/java/io/snyk/eclipse/plugin/runner Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ 2.2.0] - Unreleased
4
4
### Changes
5
+ - fixes the generated ignore id so that it is ignored during scanning
6
+
7
+ ## [ 2.2.0] - v20240529.110806
8
+ ### Changes
5
9
- require lsp4e 0.18.4 and lsp4j 0.22.0 as minimum versions (Eclipse 2024-03)
6
10
- update release process & update sites to https://static.snyk.io/eclipse/preview and https://static.snyk.io/eclipse/stable
7
11
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ public ProcessResult snykTest(File navigatePath) {
47
47
}
48
48
49
49
public ProcessResult snykIgnore (String id , File navigatePath ) {
50
- String idParam = "--id=' " + id + "' " ;
50
+ String idParam = "--id=" + id + "" ;
51
51
52
52
return snykRun (Lists .of (IGNORE_PARAM , idParam ), Optional .of (navigatePath ));
53
53
}
You can’t perform that action at this time.
0 commit comments