scripts: adjust dependency updator

We don't need these `--compat` flags anymore since 1.16 support is dropped.
This commit is contained in:
Anna Shaleva 2023-03-28 19:50:27 +03:00
parent 69102a6aa3
commit 68cb07999b

View file

@ -15,7 +15,7 @@ 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 --compat=1.17
go mod tidy
done
cd "$root"/internal/contracts/oracle_contract || exit 1