22 lines
780 B
Bash
Executable File
22 lines
780 B
Bash
Executable File
#!/bin/bash
|
|
|
|
version=3
|
|
|
|
echo "Upgrading from version to ${version}"
|
|
|
|
# Remove sub-modules
|
|
rm exchanges/go.sum
|
|
rm exchanges/go.mod
|
|
|
|
# Update template files
|
|
sed -i '' "s|github.com/status-im/status-go|github.com/status-im/status-go/v${version}|g" cmd/generate_handlers/generate_handlers_template.txt
|
|
sed -i '' "s|github.com/status-im/status-go|github.com/status-im/status-go/v${version}|g" cmd/status-backend/server/parse-api/endpoints_template.txt
|
|
|
|
# Run upgrade tool
|
|
mod upgrade -tag ${version}
|
|
|
|
# Fix "/v3/v3" bug
|
|
find . -name "*.go" -exec sed -i '' "s/\/v${version}\/v${version}/\/v${version}/g" {} +
|
|
|
|
# Fallback "/v3/extkeys" to "/extkeys"
|
|
find . -name "*.go" -exec sed -i '' "s|github.com/status-im/status-go/v${version}/extkeys|github.com/status-im/status-go/extkeys|g" {} \; |