Files
ClanStat/scripts/mkdocs.sh

16 lines
488 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
# author: Alexander Popov
# mail: iiiypuk {at} fastmail.fm
# license: Public Domain
# desc: Генерирует документацию Python кода
# Импортирует скрипт с определениями цветов
source ./3rdparty/colors.sh/colors.sh
echo -e "${CYAN}Генерация документации...${NC}"
pdoc -o docs/ ClanStat
echo -e "${GREEN}Генерация завершена. Смотрите директорию 'docs'.${NC}"