We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 445c1f6 commit 2dbd8a0Copy full SHA for 2dbd8a0
justfile
@@ -167,11 +167,11 @@ lambda-create-version:
167
168
lambda-upload-bundle:
169
#!/usr/bin/env bash
170
- APP_SPEC_ZIP="{{justfile_directory()}}/${APP_SPEC_KEY}"
+ LOCAL_APP_SPEC_ZIP="{{justfile_directory()}}/appspec.zip"
171
rm -f $APP_SPEC_ZIP
172
173
- zip -q $APP_SPEC_ZIP $APP_SPEC_FILE
174
- aws s3 cp $APP_SPEC_ZIP "s3://${BUCKET_NAME}/${APP_SPEC_KEY}"
+ zip -q $LOCAL_APP_SPEC_ZIP $APP_SPEC_FILE
+ aws s3 cp $LOCAL_APP_SPEC_ZIP "s3://${BUCKET_NAME}/${APP_SPEC_KEY}"
175
176
177
lambda-deploy:
0 commit comments