about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T11·37+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T11·37+0100
commitfd804c7b6ff5406fd5af6287d4398c6fd1277580 (patch)
treecb1c9e7b33ec969e94cdaafcbbb9983bf2530b38
parent76b1bcd59a80b866179da26bde65f77172111d83 (diff)
Path relative path to Elisp code for elisp-lint
CI is reporting a false negative because $@ is empty. This change should cause
elisp-lint to run on all of the Elisp in the wpc/ directory.
-rw-r--r--ci/pipelines/post-receive.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/pipelines/post-receive.nix b/ci/pipelines/post-receive.nix
index ad7281d99b8e..fd6db9e1f194 100644
--- a/ci/pipelines/post-receive.nix
+++ b/ci/pipelines/post-receive.nix
@@ -50,7 +50,7 @@ let
           --batch \
           --load ${elispLintSrc}/elisp-lint.el \
           --funcall elisp-lint-files-batch \
-          "$$@"
+          ./emacs/.emacs.d/wpc/*.el
       '';
       label = ":gnu: lint Emacs";
       depends_on = "init-emacs";