Skip to content

Commit

Permalink
fix: build of Lambda layer broke in CI (#2724)
Browse files Browse the repository at this point in the history
The `BRANCH_NAME=... make -C .ci dist` failed on
    cp: ../build/aws/elastic-apm-node-lambda-layer-...zip: No such file or directory
because the "../build/aws" dir had not been created.
This was broken in #2627.
  • Loading branch information
trentm authored May 25, 2022
1 parent fe303b6 commit dcc85f3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .ci/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export AWS_FOLDER
.PHONY: dist
dist: validate-branch-name
../dev-utils/make-lambda-layer-zip.sh
@mkdir -p $(AWS_FOLDER)
cp $(LAMBDA_LAYER_ZIP_FILE) $(AWS_FOLDER)/elastic-apm-node-lambda-layer-$(BRANCH_NAME).zip

.PHONY: clean
Expand Down

0 comments on commit dcc85f3

Please sign in to comment.