Skip to content

Instantly share code, notes, and snippets.

View smoelius's full-sized avatar

Samuel Moelius smoelius

  • Philadelphia, USA
View GitHub Profile
@smoelius
smoelius / update_clippy_dependencies.sh
Created August 31, 2021 23:12
A Bash script to update Clippy's dependencies within the Rust repository
#! /bin/bash
set -euo pipefail
if [[ ! -d src/tools/clippy ]]; then
echo "$0 must be run from the root of the rust repository." >&2
exit 1
fi
RUST="$PWD"