Как мне справиться с ошибочной командой или командой, которая выдает ошибку в Makefile?
например
lambda:
aws lambda create-function \
--region $(AWS_REGION) \
...
# the aws command above will output an error that function is already exist and stop the make process
# need to put an if-statement when the error happens, then run this command to update the function.
aws lambda update-function-code \
--region $(AWS_REGION) \
...
Большое спасибо заранее