i have bash script where i am trying to zip files, on my windows i am using git bash to execute the script, following is my script
#!/bin/bash
cd src/lambda/api_gw_authorizer/
zip -r src/lambda/api_gw_authorizer/api_gw_authorizer.py /src/lambda/api_gw_authorizer
aws lambda update-function-code --function-name api_gw_authorizer-sam --zip-file fileb://api_gw_authorizer.zip
I get this error
Command Line Error:
Unsupported command:
C:/Program Files/Git/src/lambda/api_gw_authorizer/api_gw_authorizer.py
for some reason the script is taking me to the git installation.