Skip to content

Commit

Permalink
Builtin removed.
Browse files Browse the repository at this point in the history
Signed-off-by: Jeff Ortel <jortel@redhat.com>
  • Loading branch information
jortel committed Jun 21, 2024
1 parent c2d1f7b commit 492205b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 9 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV GOPATH=$APP_ROOT
COPY --chown=1001:0 . .
RUN make cmd

FROM quay.io/konveyor/analyzer-lsp:latest
FROM quay.io/pranavgaikwad/analyzer-lsp:latest
USER root
RUN echo -e "[centos9]" \
"\nname = centos9" \
Expand All @@ -21,6 +21,5 @@ ENV HOME=/addon ADDON=/addon
WORKDIR /addon
ARG GOPATH=/opt/app-root
COPY --from=shim /usr/bin/windup-shim /usr/bin
COPY --from=addon $GOPATH/src/settings.yaml $ADDON/opt/settings.yaml
COPY --from=addon $GOPATH/src/bin/addon /usr/bin
ENTRYPOINT ["/usr/bin/addon"]
2 changes: 1 addition & 1 deletion cmd/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func (r *Analyzer) Run() (issueBuilder *builder.Issues, depBuilder *builder.Deps
// options builds Analyzer options.
func (r *Analyzer) options(output, depOutput string) (options command.Options, err error) {
settings := &Settings{}
err = settings.Read()
err = settings.AppendExtensions()
if err != nil {
return
}
Expand Down
1 change: 0 additions & 1 deletion cmd/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ func (r *Settings) Read() (err error) {
return
}
r.index = len(r.content)
err = r.AppendExtensions()
return
}

Expand Down
5 changes: 0 additions & 5 deletions settings.yaml

This file was deleted.

0 comments on commit 492205b

Please sign in to comment.