You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The condition if [ -z "${SSL_CERT_FILE}"]; on line 10 of the bootstrap-al2023.sh script is missing a space before the closing bracket, showing a syntax error whenever we build our .NET 8 lambdas. The script runs as expected, despite the error.
Expected Behavior
No syntax error to appear
Current Behavior
This error appears, however the script proceeds as expected: /var/runtime/bootstrap: line 10: [: missing `]'
Reproduction Steps
Run the bootstrap-al2023.sh script/Start a Lambda with the .NET 8 runtime
Possible Solution
Update the condition to: if [ -z "${SSL_CERT_FILE}" ];
Additional Information/Context
No response
AWS .NET SDK and/or Package version used
.NET 8
Targeted .NET Platform
.NET 8
Operating System and version
Windows 10
The text was updated successfully, but these errors were encountered:
Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.
Describe the bug
The condition
if [ -z "${SSL_CERT_FILE}"];
on line 10 of the bootstrap-al2023.sh script is missing a space before the closing bracket, showing a syntax error whenever we build our .NET 8 lambdas. The script runs as expected, despite the error.Expected Behavior
No syntax error to appear
Current Behavior
This error appears, however the script proceeds as expected: /var/runtime/bootstrap: line 10: [: missing `]'
Reproduction Steps
Run the bootstrap-al2023.sh script/Start a Lambda with the .NET 8 runtime
Possible Solution
Update the condition to:
if [ -z "${SSL_CERT_FILE}" ];
Additional Information/Context
No response
AWS .NET SDK and/or Package version used
.NET 8
Targeted .NET Platform
.NET 8
Operating System and version
Windows 10
The text was updated successfully, but these errors were encountered: