Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit adf7747

Browse files
Ajustes em scripts para forçar o bash
1 parent 14b7898 commit adf7747

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+51
-4
lines changed

examples/lambda_api/public/swagger/openapi.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,5 @@ paths:
224224
$ref: '#/components/schemas/EventCreateErrorResponse'
225225
summary: Create event
226226
servers:
227-
- description: Development server
228-
url: http://localhost:5000
229-
- description: Development server
230-
url: http://localhost:5000
227+
- description: null
228+
url: null

examples/lambda_sqs/scripts/autopep8.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if [ -z "$1" ]; then
23
autopep8 --in-place --recursive
34
else

examples/lambda_sqs/scripts/boot-validate-connection.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if [ $RUNNING_IN_CONTAINER ]; then
23
HOST=localstack
34
else

examples/lambda_sqs/scripts/clean-env.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# -----------------------------------------------------------------------------
23
# Current file variables
34
# -----------------------------------------------------------------------------

examples/lambda_sqs/scripts/docker/create-network.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if test -f .projectrc; then
23
source .projectrc
34
elif test -f ./scripts/.projectrc; then

examples/lambda_sqs/scripts/docker/exec-sh.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if test -f .projectrc; then
23
source .projectrc
34
elif test -f ./scripts/.projectrc; then

examples/lambda_sqs/scripts/flask/run-local.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
python3 -m venv venv
23
source ./venv/bin/activate
34

examples/lambda_sqs/scripts/install.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if test -f "requirements.txt"; then
23
python3 -m pip install -r requirements.txt
34
fi

examples/lambda_sqs/scripts/localstack/lambda/create-event-source-mapping.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
if [ -z "$1" ]; then
23
echo 'Function name must be informed'
34
exit 1

examples/lambda_sqs/scripts/localstack/lambda/create-function-from-s3.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# -----------------------------------------------------------------------------
23
# Current file variables
34
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)