Update prysm scripts to support client-stats, deprecate slasher (#8971)

This commit is contained in:
Preston Van Loon
2021-06-02 14:06:59 -05:00
committed by GitHub
parent 91bd477f4f
commit fc898d541f
3 changed files with 35 additions and 25 deletions

View File

@@ -2,11 +2,11 @@ $folderDist = "dist";
$ProgressPreference = 'SilentlyContinue' # Disable Invoke-WebRequest progress bar, makes it silent and faster.
# Complain if invalid arguments were provided.
if ("beacon-chain", "validator", "slasher" -notcontains $args[0]) {
if ("beacon-chain", "validator", "client-stats" -notcontains $args[0]) {
Write-Host @"
Usage: ./prysm.sh1 PROCESS FLAGS.
PROCESS can be beacon-chain, validator, or slasher.
PROCESS can be beacon-chain, validator, or client-stats.
FLAGS are the flags or arguments passed to the PROCESS.
Use this script to download the latest Prysm release binaries.