Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 585a6d4

Browse files
committedFeb 21, 2019
lint links
1 parent b53c372 commit 585a6d4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed
 

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ language: nix
22

33
script:
44
- nix-build -Q default.nix;
5+
- find content/2019 -type f -exec $(nix-build nixpkgs.nix -A nodePackages_10_x.markdown-link-check)/bin/markdown-link-check
56

‎lint.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
BIN=$(nix-build nixpkgs.nix -A nodePackages_10_x.markdown-link-check)/bin/markdown-link-check
2+
3+
find content/2019 -type f -exec $BIN {} \;
4+

‎nixpkgs.nix

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# to update: $ nix-prefetch-url --unpack url
22
import (builtins.fetchTarball {
3-
url = "https://github.com/NixOS/nixpkgs/archive/39e3248141eb2f778ef5adc7643eb36094416974.tar.gz";
4-
sha256 = "17l5fjpkhsr70z6p43k9b1g7flxkvcv3azwqqjsc666s44sgiw9j";
3+
url = "https://github.com/NixOS/nixpkgs/archive/54568a7cafb8538220fa04b93e9a038a314b65df.tar.gz";
4+
sha256 = "0sdhizxcp7vzsipbffx3npns23lfgdhxwkiawmi3msl50dxmc8p1";
55
}) { config = {}; overlays = []; }

0 commit comments

Comments
 (0)
This repository has been archived.