mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-09 20:38:47 +01:00
12 lines
210 B
Bash
Executable File
12 lines
210 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
rm -rf docs
|
|
|
|
swift package --allow-writing-to-package-directory \
|
|
generate-documentation --target XToolDocs --disable-indexing \
|
|
--output-path docs
|