diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-06-02T20·37+0200 |
---|---|---|
committer | grfn <grfn@gws.fyi> | 2021-06-02T20·43+0000 |
commit | bf9857beff50f534a04a080746f52fee8904be12 (patch) | |
tree | 097d57c77b4a5662389f8dd3d509473c7e3363a9 /users/grfn | |
parent | e0708cba8d8b95f961534bdd2d605cdda78dbb6c (diff) |
feat(gws.fyi): Use awscli2 to deploy r/2642
Use awscli2 rather than awscli to deploy - less because I actually need any specific functionality from the new version, and more because I already use awscli2 on my systems and it's nice to always use the same version of stuff Change-Id: Id0e5b63dde1857c2e417ac2eeb2f769ebcc0f956 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3175 Reviewed-by: grfn <grfn@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'users/grfn')
-rw-r--r-- | users/grfn/gws.fyi/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/grfn/gws.fyi/default.nix b/users/grfn/gws.fyi/default.nix index 80ce78ccf3e0..ca24868abb97 100644 --- a/users/grfn/gws.fyi/default.nix +++ b/users/grfn/gws.fyi/default.nix @@ -21,7 +21,7 @@ let ''; in (writeShellScript "deploy.sh" '' - ${awscli}/bin/aws --profile personal s3 sync ${website}/ ${bucket} + ${awscli2}/bin/aws --profile personal s3 sync ${website}/ ${bucket} echo "Deployed to http://gws.fyi" '') // { inherit website; |