Skip to content

Commit

Permalink
Tooling: Fix naming issues
Browse files Browse the repository at this point in the history
  • Loading branch information
danielunderwood committed Mar 10, 2022
1 parent 1453b76 commit a6c582b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ WORKDIR /app
COPY --from=build /go/src/github.com/danielunderwood/feed-parser/feed-parser /app
# Install ca-certificates so TLS can be verified
RUN apt-get update && apt-get install -y ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/*
CMD ["/app/feed-parser"]
CMD ["/app/feed-ingress"]
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
pkgs = nixpkgsFor.${system};
in
{
log2http = pkgs.buildGoModule {
feed-ingress = pkgs.buildGoModule {
pname = "feed-ingress";
inherit version;
# In 'nix develop', we don't need a copy of the source tree
Expand All @@ -52,7 +52,7 @@
# The default package for 'nix build'. This makes sense if the
# flake provides only one package or there is a clear "main"
# package.
defaultPackage = forAllSystems (system: self.packages.${system}.log2http);
defaultPackage = forAllSystems (system: self.packages.${system}.feed-ingress);

devShell = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/danielunderwood/feed-parser
module github.com/danielunderwood/feed-ingress

go 1.16

Expand Down

0 comments on commit a6c582b

Please sign in to comment.