#!/bin/sh if git show main:README.md >/dev/null 2>&1; then git show main:README.md | cmark-gfm >README.html else if git show main:README.html >/dev/null 2>&1; then git show main:README.html >README.html else rm -f README.html fi fi exec git update-server-info