Skip to content

Commit c428294

Browse files
committed
Remove double _deploy suffix.
1 parent c525510 commit c428294

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

examples/powertools-examples-core-utilities/sam-bazel/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ java_import(
6464
)
6565

6666
java_binary(
67-
name = "powertools_sam_deploy",
67+
name = "powertools_sam",
6868
main_class = "helloworld.App",
6969
runtime_deps = [":powertools_sam_lib"],
7070
deploy_manifest_lines = [

examples/powertools-examples-core-utilities/sam-bazel/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To deploy the example, check out the instructions for getting started with SAM i
1616

1717
```bash
1818
# Build the application
19-
bazel build //:powertools_sam_deploy_deploy.jar
19+
bazel build //:powertools_sam_deploy.jar
2020

2121
# Deploy the application
2222
sam deploy --guided
@@ -26,7 +26,7 @@ sam deploy --guided
2626

2727
```bash
2828
# Build the application
29-
bazel build //:powertools_sam_deploy_deploy.jar
29+
bazel build //:powertools_sam_deploy.jar
3030

3131
# Test a single function locally
3232
sam local invoke HelloWorldFunction --event events/event.json

examples/powertools-examples-core-utilities/sam-bazel/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Resources:
2222
HelloWorldFunction:
2323
Type: AWS::Serverless::Function # More info about Function Resource: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#awsserverlessfunction
2424
Properties:
25-
CodeUri: bazel-bin/powertools_sam_deploy_deploy.jar
25+
CodeUri: bazel-bin/powertools_sam_deploy.jar
2626
Handler: helloworld.App::handleRequest
2727
Environment: # More info about Env Vars: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#environment-object
2828
Variables:
@@ -37,7 +37,7 @@ Resources:
3737
HelloWorldStreamFunction:
3838
Type: AWS::Serverless::Function
3939
Properties:
40-
CodeUri: bazel-bin/powertools_sam_deploy_deploy.jar
40+
CodeUri: bazel-bin/powertools_sam_deploy.jar
4141
Handler: helloworld.AppStream::handleRequest
4242
MemorySize: 512
4343
Tracing: Active

0 commit comments

Comments
 (0)