Mix do release, bootstrap, zip not working

Is the command “mix do release, bootstrap, zip” no longer supported?

I am following documentation on running an Elixir project in AWS Lambda but when getting to this step receive the following error…

Error: ** (Mix) Expected “mix release” or “mix release NAME”

Just had a quick glance, looks as though that project uses distillery to release instead of mix release, which is relatively new to elixir. Try changing the command to mix do distillery.release, bootstrap, zip.

1 Like