diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-31T11·37+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-31T11·37+0100 |
commit | fd804c7b6ff5406fd5af6287d4398c6fd1277580 (patch) | |
tree | cb1c9e7b33ec969e94cdaafcbbb9983bf2530b38 /ci | |
parent | 76b1bcd59a80b866179da26bde65f77172111d83 (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.
Diffstat (limited to 'ci')
-rw-r--r-- | ci/pipelines/post-receive.nix | 2 |
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"; |