neoneo-go/scripts/update_deps.sh
Anna Shaleva f1fbd6ad4b scripts: update dependency-updator script
Include Oracle contract to the list of contracts to be updated.
2022-09-16 20:33:48 +03:00

23 lines
477 B
Bash
Executable file

#!/bin/sh
if [ -z "$1" ]; then
echo "Usage: ./update_deps.sh <revision>"
exit 1
fi
REV="$1"
root="$(git rev-parse --show-toplevel)"
cd "$root" || exit 1
go get github.com/nspcc-dev/neo-go/pkg/interop@"$REV"
go mod tidy
for dir in "$root"/examples/*/; do
cd "$dir" || exit 1
go get github.com/nspcc-dev/neo-go/pkg/interop@"$REV"
go mod tidy
done
cd "$root"/internal/contracts/oracle_contract || exit 1
go get github.com/nspcc-dev/neo-go/pkg/interop@"$REV"
go mod tidy