Skip to content

Commit 0340136

Browse files
committed
fix: deploy with unreleased patched changes of python-lambda
nficano/python-lambda#711
1 parent 5f4c847 commit 0340136

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/aws_lambda/aws_lambda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ def handler(event, context):
3131
# export SLACK_BOT_TOKEN=xoxb-***
3232

3333
# rm -rf vendor && cp -pr ../../src/* vendor/
34-
# pip install python-lambda
34+
# pip install git+https://github.com/nficano/python-lambda
3535
# lambda deploy --config-file aws_lambda_config.yaml --requirements requirements.txt

examples/aws_lambda/aws_lambda_oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ def handler(event, context):
4646
# - AWSLambdaRole
4747

4848
# rm -rf latest_slack_bolt && cp -pr ../../src latest_slack_bolt
49-
# pip install python-lambda
49+
# pip install git+https://github.com/nficano/python-lambda
5050
# lambda deploy --config-file aws_lambda_oauth_config.yaml --requirements requirements_oauth.txt

examples/aws_lambda/deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
rm -rf vendor && mkdir -p vendor/slack_bolt && cp -pr ../../slack_bolt/* vendor/slack_bolt/
3-
pip install python-lambda -U
3+
pip install git+https://github.com/nficano/python-lambda
44
lambda deploy \
55
--config-file aws_lambda_config.yaml \
66
--requirements requirements.txt

examples/aws_lambda/deploy_lazy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
rm -rf slack_bolt && mkdir slack_bolt && cp -pr ../../slack_bolt/* slack_bolt/
3-
pip install python-lambda -U
3+
pip install git+https://github.com/nficano/python-lambda
44
lambda deploy \
55
--config-file lazy_aws_lambda_config.yaml \
66
--requirements requirements.txt

examples/aws_lambda/deploy_oauth.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
rm -rf slack_bolt && mkdir slack_bolt && cp -pr ../../slack_bolt/* slack_bolt/
3-
pip install python-lambda -U
3+
pip install git+https://github.com/nficano/python-lambda
44
lambda deploy \
55
--config-file aws_lambda_oauth_config.yaml \
66
--requirements requirements_oauth.txt

examples/aws_lambda/lazy_aws_lambda.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ def handler(event, context):
4646
# export SLACK_BOT_TOKEN=xoxb-***
4747

4848
# rm -rf vendor && cp -pr ../../src/* vendor/
49-
# pip install python-lambda
49+
# pip install git+https://github.com/nficano/python-lambda
5050
# lambda deploy --config-file aws_lambda_config.yaml --requirements requirements.txt

0 commit comments

Comments
 (0)