-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(build): Correct buildspec so it does not fail #2737
Conversation
@@ -12,7 +12,12 @@ phases: | |||
- /bin/bash ./build.sh | |||
post_build: | |||
commands: | |||
- "[ -f .BUILD_COMPLETED ] && [ -z \"${SKIP_PACK:-}\" ] && /bin/bash ./pack.sh" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not follow @rix0rrr's suggestion and implement this inside pack.sh
itself? Much safer and you can even test it before merging...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It feels wrong to me that calling pack.sh
would not... pack... if some environment variable is set. I rather NOT call pack.sh
in that case.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license.