Skip to content

Instantly share code, notes, and snippets.

@parasyte
parasyte / rustup-bisect
Last active June 9, 2019 00:40 — forked from passcod/rustup-bisect
A tool to find out what the earliest version that your project supports is!
#!/usr/bin/env bash
# With revisions from @parasyte for macOS compatibility
# Requires bash >= 5 (mapfile)
if [[ "$1" == "--keep-versions" ]]; then
keep_versions="1"
fi
purple="\e[0;35m"
reset="\e[0m"