Skip to content

Commit

Permalink
Makefile binary name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-szabo committed Apr 29, 2019
1 parent d309b49 commit 1d211e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export GO111MODULE=on
### Build

build:
go build -ldflags "-extldflags \"-static\"" -o build/mylambda .
go build -ldflags "-extldflags \"-static\"" -o build/aws-lambda-go-template .

build-linux:
GOOS=linux GOARCH=amd64 $(MAKE) build
Expand All @@ -30,7 +30,7 @@ lint: $(GOPATH)/bin/golangci-lint
### Localnet

localnet-start:
build/mylambda -webserver
build/aws-lambda-go-template -webserver

localnet-lambda:
# (Requirements: pip3 install aws-sam-cli)
Expand Down

0 comments on commit 1d211e9

Please sign in to comment.