Skip to content

Commit ac29442

Browse files
Adds bash shebang to execute.sh script
This commit adds the bash shebang allowing to execute the script without guess the right interpreter
1 parent f39bbbe commit ac29442

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/execute.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
# config
23
STACK_NAME=lambda-power-tuning
34
INPUT=$(cat scripts/sample-execution-input.json) # or use a static string
@@ -32,4 +33,4 @@ do
3233
aws stepfunctions describe-execution --execution-arn $EXECUTION_ARN --query 'output' --output text
3334
break
3435
fi
35-
done
36+
done

0 commit comments

Comments
 (0)