diff options
author | EuAndreh <eu@euandre.org> | 2019-05-21 07:27:23 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-21 07:33:00 -0300 |
commit | 9365ba64f8c55afe67beb40367b968b968788e3f (patch) | |
tree | 8ace48cb23f13500eb53cfa8faee33af1f78baee | |
parent | TODOs.org (diff) | |
download | euandre.org-9365ba64f8c55afe67beb40367b968b968788e3f.tar.gz euandre.org-9365ba64f8c55afe67beb40367b968b968788e3f.tar.xz |
Exclude pastebin/skeleton.org in subtasks.fixme run
Diffstat (limited to '')
-rw-r--r-- | default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/default.nix b/default.nix index 562367e..3f2817d 100644 --- a/default.nix +++ b/default.nix @@ -32,7 +32,7 @@ in with pkgs; with pkgs.stdenv; rec { name = "${baseAttrs.name}-fixme"; buildInputs = baseAttrs.buildInputs ++ [ ag ]; buildPhase = '' - ag FIXME --ignore default.nix || { + ag FIXME --ignore default.nix --ignore pastebin/skeleton.org || { touch $out } ''; |