Skip to content

Commit

Permalink
Adds bash shebang to execute.sh script
Browse files Browse the repository at this point in the history
This commit adds the bash shebang allowing to execute the script without guess the right interpreter
  • Loading branch information
claudiopastorini authored Aug 24, 2020
1 parent f39bbbe commit ac29442
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/execute.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
# config
STACK_NAME=lambda-power-tuning
INPUT=$(cat scripts/sample-execution-input.json) # or use a static string
Expand Down Expand Up @@ -32,4 +33,4 @@ do
aws stepfunctions describe-execution --execution-arn $EXECUTION_ARN --query 'output' --output text
break
fi
done
done

0 comments on commit ac29442

Please sign in to comment.