From 00ba1753a2916faeba12ce36e47657bad95848f3 Mon Sep 17 00:00:00 2001 From: dusk Date: Sun, 5 Jan 2025 01:22:19 +0900 Subject: [PATCH] build(nix): build pk to correct build dir so it picks up libcommands.so --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 4f421d74..e99d2e03 100644 --- a/flake.nix +++ b/flake.nix @@ -204,7 +204,8 @@ set -x ${pluralkitConfCheck} ${self'.apps.generate-command-parser-bindings.program} - exec dotnet run -c Release --project PluralKit.Bot + dotnet build -c Release -o obj/ + exec dotnet obj/PluralKit.Bot.dll ''; }; depends_on.postgres.condition = "process_healthy";