Skip to content

Commit

Permalink
Merge pull request #184 from snyk/fix/quotes-snyk-ignore-file
Browse files Browse the repository at this point in the history
fix: don't use quotes when generating ignore
  • Loading branch information
teodora-sandu authored Jun 19, 2024
2 parents 8dfb00a + d7d5e9d commit a7fbd8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [2.2.0] - Unreleased
### Changes
- fixes the generated ignore id so that it is ignored during scanning

## [2.2.0] - v20240529.110806
### Changes
- require lsp4e 0.18.4 and lsp4j 0.22.0 as minimum versions (Eclipse 2024-03)
- update release process & update sites to https://static.snyk.io/eclipse/preview and https://static.snyk.io/eclipse/stable

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public ProcessResult snykTest(File navigatePath) {
}

public ProcessResult snykIgnore(String id, File navigatePath) {
String idParam = "--id='" + id + "'";
String idParam = "--id=" + id + "";

return snykRun(Lists.of(IGNORE_PARAM, idParam), Optional.of(navigatePath));
}
Expand Down

0 comments on commit a7fbd8c

Please sign in to comment.