Skip to content

Commit

Permalink
feat(local): omit halconfig dir in local profiles (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
lwander authored May 7, 2018
1 parent 4db8515 commit c5806c0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public InputStream readArchiveProfile(String artifactName, String version, Strin
}

private String profilePath(String artifactName, String profileFileName) {
return Paths.get(localBomPath, artifactName, HALCONFIG_DIR, profileFileName).toString();
return Paths.get(localBomPath, artifactName, profileFileName).toString();
}

String bomPath(String version) {
Expand Down

0 comments on commit c5806c0

Please sign in to comment.