diff --git a/README.md b/README.md index 32385540..e624a692 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ $ echo $'[target.x86_64-unknown-linux-musl]\nlinker = "x86_64-linux-musl-gcc"' > Compile one of the examples as a _release_ with a specific _target_ for deployment to AWS: ```bash -$ cargo build -p lambda --example hello --release --target x86_64-unknown-linux-musl +$ cargo build -p lambda --example basic --release --target x86_64-unknown-linux-musl ``` For [a custom runtime](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-custom.html), AWS Lambda looks for an executable called `bootstrap` in the deployment package zip. Rename the generated `basic` executable to `bootstrap` and add it to a zip archive.