blob: 925fa17badafe9a4867e6e4f599cec4fdc0ce124 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env bash
if [ -z "$GIT_TAG" ]; then
echo "GIT_TAG is not set"
exit 1
fi
OLD_TAG=$(jq -r '.version' package.json)
rg "$OLD_TAG" --files-with-matches --iglob \!\*lock\* --iglob \!go.mod --iglob \!deno.json --iglob \!package.json | xargs sed -i "s/$OLD_TAG/$GIT_TAG/g"
# fiddlge with autotools
AUTOTOOLS_TAG=$(echo $GIT_TAG | sed 's/\./:/g')
OLD_TAG=$(echo $OLD_TAG | sed 's/\./:/g')
echo $GIT_TAG
sed -i "s/$GIT_TAG/$AUTOTOOLS_TAG/g" GNUmakefile.am
|