mirror of
https://github.com/xtool-org/xtool.git
synced 2026-02-04 11:53:30 +01:00
10 lines
188 B
Bash
Executable File
10 lines
188 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
rm -rf docs
|
|
|
|
swift package --allow-writing-to-package-directory \
|
|
generate-documentation --target XToolDocs --disable-indexing \
|
|
--output-path docs
|