mirror of
https://github.com/chatmail/relay.git
synced 2026-05-11 16:34:39 +00:00
10 lines
154 B
Bash
10 lines
154 B
Bash
#!/bin/sh
|
|
#
|
|
# Wrapper for building the docs
|
|
set -e
|
|
# Ensure uv is in PATH
|
|
export PATH="$HOME/.local/bin:/root/.local/bin:$PATH"
|
|
|
|
cd doc/
|
|
uv run make html
|