summaryrefslogtreecommitdiff
path: root/gomods.sh
blob: 890cccd2b4b09dba2e9cd03faf4009452c505e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

version="${1}"
if [[ -z "${version}" ]]; then
    echo "usage: supply a cap/psx module version to target"
    exit 1
fi

for x in $(find . -name 'go.mod'); do
    sed -i -e 's@kernel.org/\([^ ]*\) v.*$@kernel.org/\1 '"${version}@" "${x}"
done