Files
cdk/misc/scripts/check-docs.sh
thesimplekid c77feec5e5 chore: fix precommit scrips check
This removes rustup from the scripts. As rust versions should be managed
through the nix shell and not rust up.
2024-04-24 16:33:42 +01:00

14 lines
182 B
Bash
Executable File

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