#!/bin/sh -e

PREFIX=""
if [ -d "venv" ] ; then
    PREFIX="venv/bin/"
fi

set -x

${PREFIX}mkdocs "$@"
