From ac29442b289cf12e64b8cf3f263d1148b3ed3dd3 Mon Sep 17 00:00:00 2001 From: Claudio Pastorini Date: Mon, 24 Aug 2020 12:49:22 +0200 Subject: [PATCH 1/3] Adds bash shebang to execute.sh script This commit adds the bash shebang allowing to execute the script without guess the right interpreter --- scripts/execute.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/execute.sh b/scripts/execute.sh index 5fa7f58..e5ae0ae 100644 --- a/scripts/execute.sh +++ b/scripts/execute.sh @@ -1,3 +1,4 @@ +#!/bin/bash # config STACK_NAME=lambda-power-tuning INPUT=$(cat scripts/sample-execution-input.json) # or use a static string @@ -32,4 +33,4 @@ do aws stepfunctions describe-execution --execution-arn $EXECUTION_ARN --query 'output' --output text break fi -done \ No newline at end of file +done From 7e71f54bc480eb9d5c04390c16deeeef2ad46bcb Mon Sep 17 00:00:00 2001 From: Claudio Pastorini Date: Mon, 24 Aug 2020 12:52:45 +0200 Subject: [PATCH 2/3] Adds bash shebang to deploy-sar-app.sh script This commit adds the bash shebang allowing to execute the script without guessing the right interpreter --- scripts/deploy-sar-app.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy-sar-app.sh b/scripts/deploy-sar-app.sh index d4b5925..587560c 100644 --- a/scripts/deploy-sar-app.sh +++ b/scripts/deploy-sar-app.sh @@ -1,3 +1,4 @@ +#!/bin/bash # config BUCKET_NAME=your-sam-templates-bucket STACK_NAME=lambda-power-tuning-app From a2c70db62c365a5ab251d40346bc0bd18759b8aa Mon Sep 17 00:00:00 2001 From: Claudio Pastorini Date: Mon, 24 Aug 2020 12:53:28 +0200 Subject: [PATCH 3/3] Adds bash shebang to deploy.sh script This commit adds the bash shebang allowing to execute the script without guessing the right interpreter --- scripts/deploy.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index ac616a4..a14925a 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,3 +1,4 @@ +#!/bin/bash # config DEFAULT_BUCKET_NAME=your-sam-templates-bucket DEFAULT_STACK_NAME=lambda-power-tuning