repoverlay 0.17.0 is out now.Release notes
Installation
Install:
brew install tylerbutler/tap/repoverlayUpdate:
brew update && brew upgrade repoverlayUninstall:
brew uninstall repoverlayInstall:
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/tylerbutler/repoverlay/releases/latest/download/repoverlay-installer.sh | shThe binary is installed to $CARGO_HOME/bin (or $HOME/.cargo/bin if CARGO_HOME is not set).
Update: Rerun the install command in the Install section to replace the binary.
Uninstall:
rm "${CARGO_HOME:-$HOME/.cargo}/bin/repoverlay"Install:
irm https://github.com/tylerbutler/repoverlay/releases/latest/download/repoverlay-installer.ps1 | iexThe binary is installed to $env:CARGO_HOME\bin (or $env:USERPROFILE\.cargo\bin if CARGO_HOME is not set).
Update: Rerun the install command in the Install section to replace the binary.
Uninstall:
$cargoHome = if ($env:CARGO_HOME) { $env:CARGO_HOME } else { Join-Path $env:USERPROFILE ".cargo" }Remove-Item (Join-Path $cargoHome "bin\repoverlay.exe")Install:
# Install a pre-built binary (faster)cargo binstall repoverlay
# Build from sourcecargo install repoverlayUpdate:
cargo binstall repoverlay --force# orcargo install repoverlay --forceUninstall:
cargo uninstall repoverlayManual
Section titled “Manual”Download the pre-built binaries for your platform at repoverlay releases.
Update: Download and replace the binary on your PATH.
Uninstall: Delete the binary from your PATH.