diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-08-18T02·17-0400 |
---|---|---|
committer | grfn <grfn@gws.fyi> | 2021-08-18T03·23+0000 |
commit | 15163fdc160ae4cfd93c5416729d14221ac7239c (patch) | |
tree | bd074ceda62658abf0027264f3af61a37c3a2f12 /users/grfn/gws.fyi/default.nix | |
parent | 8dd5ee26d737b1ea62c607480d4f1e1c2d9d2f73 (diff) |
feat(gws.fyi): Add a recipe for tomato paste r/2748
Someone asked for this, so here it is. Change-Id: I00c52deb8c3f4e8f786cf4763b39d862ad041f6d Reviewed-on: https://cl.tvl.fyi/c/depot/+/3371 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'users/grfn/gws.fyi/default.nix')
-rw-r--r-- | users/grfn/gws.fyi/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/grfn/gws.fyi/default.nix b/users/grfn/gws.fyi/default.nix index ca24868abb97..1796c0bf74cf 100644 --- a/users/grfn/gws.fyi/default.nix +++ b/users/grfn/gws.fyi/default.nix @@ -17,6 +17,7 @@ let mkdir -p $out cp ${css} $out/main.css cp ${site.index} $out/index.html + cp -r ${site.recipes} $out/recipes cp ${resume} $out/resume.pdf ''; @@ -24,5 +25,5 @@ in (writeShellScript "deploy.sh" '' ${awscli2}/bin/aws --profile personal s3 sync ${website}/ ${bucket} echo "Deployed to http://gws.fyi" '') // { - inherit website; + inherit website site; } |