mirror of
https://github.com/MPSU/APS.git
synced 2026-05-25 11:39:26 +00:00
11 lines
184 B
Bash
11 lines
184 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p src
|
|
cp .github/book.toml .github/*.md ./
|
|
|
|
# Copy custom theme assets (language switcher, etc.)
|
|
if [ -d ".github/theme" ]; then
|
|
cp -r .github/theme ./
|
|
fi
|