summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-04-26 23:10:01 -0400
committerseth <[email protected]>2024-04-27 03:13:16 +0000
commit78b8142f6974495360a990e40576190f296b4461 (patch)
treee292714f1d4a2a3d734e2e0ca25ba55e1a843bc1
parent9d6a0fe5bbef9811def84ad1d1b8ca71ae7747ad (diff)
fix selene check
-rw-r--r--checks.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/checks.nix b/checks.nix
index 87e389f..bf680f1 100644
--- a/checks.nix
+++ b/checks.nix
@@ -16,7 +16,9 @@ in {
'';
check-selene = pkgs.runCommand "check-selene" {} ''
- ${lib.getExe pkgs.selene} ${./.}
+ cd ${./.}
+ ${lib.getExe pkgs.selene} .
+ touch $out
'';
check-statix = pkgs.runCommand "check-statix" {} ''
@@ -26,7 +28,6 @@ in {
check-stylua = pkgs.runCommand "check-stylua" {} ''
${lib.getExe pkgs.stylua} --check ${./.}
-
touch $out
'';
}