https://gitlab.com/tezos/tezos
Raw File
Tip revision: c4d535b1955cdc3f6e969b450ef49a8b308621bd authored by Arvid Jakobsson on 22 September 2023, 06:45:41 UTC
tmp disable warnings
Tip revision: c4d535b
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