diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-07-07 22:47:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-07-07 22:47:40 +0200 |
commit | 4b55bfb1a37e722170003aa02c2eda4c2cfd6521 (patch) | |
tree | a5493e7e4a4f6e91647ed30f355927a076801c3e | |
parent | 6d1df9367077a256d452eff3468900f10165fd69 (diff) |
aws/api: Add API update script.
* aws/api/update.sh: New file.
-rwxr-xr-x | aws/api/update.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/aws/api/update.sh b/aws/api/update.sh new file mode 100755 index 0000000..de4e4b3 --- /dev/null +++ b/aws/api/update.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +version=v2.680.0 + +for f in $(ls -1 *.json); do + wget -qO $f https://github.com/aws/aws-sdk-js/raw/$version/apis/$f +done |