mirror of
https://github.com/nolen777/eagle0.git
synced 2026-07-28 22:35:42 +00:00
* refresh and push zip * push refresh name layers script * don't git-add the scm * grr Former-commit-id: 397cdfd243810e8c17575a77f712417414c3ca76
11 lines
290 B
Bash
Executable File
11 lines
290 B
Bash
Executable File
#!/bin/bash
|
|
|
|
OLDPATH=$(pwd)
|
|
cd scripts/refresh_name_layers
|
|
bundle install
|
|
rm refresh_name_layers.zip
|
|
zip -r refresh_name_layers.zip refresh_name_layers.rb vendor
|
|
aws lambda update-function-code \
|
|
--function-name NameRefresher \
|
|
--zip-file fileb://refresh_name_layers.zip
|
|
cd $OLDPATH |