commit: run on new server

This commit is contained in:
Alec Muffett 2018-07-13 04:25:08 +00:00
parent c265ec06b1
commit 172383b81d
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
all:
README.md:
( cat 01-preamble.md ; perl walk.pl ; cat 02-footnotes.md ) > README.md
update:
git pull
./checker.sh
make README.md
git add .
clean:
rm *~

View File

@ -145,7 +145,7 @@ foreach $catname (sort { (scalar keys %{$tree{$a}}) <=> (scalar keys %{$tree{$b}
foreach my $line (@{$onion->{proof}}) {
print " * $line";
print " :no_entry_sign: Not HTTPS" if ($line !~ m!https://!);
print " :no_entry_sign: Not HTTPS" if ($line =~ m!http://!);
print "\n";
}