diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-07-06T15·33-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-07-06T15·34+0000 |
commit | 9e622eceae688b08eb5d29e0da4f1b7b8d9a75fa (patch) | |
tree | a91448f97eba0ecfacf99efdb926677377168acd | |
parent | b608c4ef2515bbd34bb65ac666fdc0e1609db52f (diff) |
refactor(gws.fyi): Register GC roots r/1224
Don't want this getting GCed in between execution, so remove --no-out-link from the nix-build invocation. Change-Id: Ib786d46f84938f45f51823781eecb88338120526 Reviewed-on: https://cl.tvl.fyi/c/depot/+/943 Reviewed-by: glittershark <grfn@gws.fyi>
-rw-r--r-- | users/glittershark/gws.fyi/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/users/glittershark/gws.fyi/Makefile b/users/glittershark/gws.fyi/Makefile index cfe3dd277d2e..9760c93f26f1 100644 --- a/users/glittershark/gws.fyi/Makefile +++ b/users/glittershark/gws.fyi/Makefile @@ -1,7 +1,7 @@ .PHONY: deploy deploy: - @$(shell nix-build `git rev-parse --show-toplevel` -A 'users.glittershark."gws.fyi"' --no-out-link) + @$(shell nix-build `git rev-parse --show-toplevel` -A 'users.glittershark."gws.fyi"') renew: @echo Renewing... |