Files
cdk/misc/scripts/check-docs.sh
Yuki Kishimoto 02fd33225c Add misc/scripts
Signed-off-by: Yuki Kishimoto <yukikishimoto@protonmail.com>
2024-04-10 17:54:44 +02:00

15 lines
195 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
buildargs=(
"-p cashu"
"-p cashu-sdk"
)
for arg in "${buildargs[@]}"; do
echo "Checking '$arg' docs"
cargo doc $arg --all-features
echo
done