set -euo pipefail
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$SCRIPT_DIR/../.."
if [[ "${1:-}" == "--dry-run" ]]; then echo "cargo clippy -p assistant_kit --all-features -- -D warnings"; exit 0; fi
exec cargo clippy -p assistant_kit --all-features -- -D warnings