https://gitlab.com/tezos/tezos
Raw File
Tip revision: 555653d9447c2bedd3029666421d836bdee80c63 authored by iguerNL@Functori on 25 January 2024, 12:25:03 UTC
Proto/SORU/Dal: generalize valid_published_level to slot_index_is_valid
Tip revision: 555653d
restore-old-protocols.sh
#!/bin/sh

set -eu

usage() {
  echo "Usage: $0 <protocol-trashbin>"
  echo "Restores the protocols stored in <protocol-trashbin>."
  echo "This reverses the effect of 'scripts/remove-old-protocols.sh <protocol-trashbin>'"
  exit 1
}

trash_bin=""
if [ -n "${1:-}" ] && [ "${1:-}" != "--help" ]; then
  trash_bin=$1
else
  usage
fi

for protocol in "$trash_bin"/*; do
  echo mv "$protocol" src
  mv "$protocol" src
done
back to top