添加 update_fspkg_master.tpl

This commit is contained in:
huangsimin@fusen.cn 2024-03-11 17:47:36 +08:00
parent 33a489ab93
commit d153a6544b

View File

@ -1,25 +1,38 @@
#! /bin/bash
#! /bin/env bash
input_string=$(cat go.mod)
# 使用sed命令提取参数并替换输出格式
output=$(echo "$input_string" | sed -nE 's/[[:space:]]{0,}(replace[[:space:]]+)?([[:alnum:]-]+)[[:space:]]+([[:alnum:].-]+)[[:space:]]+=>[[:space:]]+([[:alnum:]/.-]+)[[:space:]]+([[:alnum:].-]+)/\2 \3 \4 \5/p')
# echo $output
ischange="no"
IFS=$'\n' # 设置分隔符为换行符
for out in $output; do
IFS=$' '
read -r fsname fsversion fsfullname fslatest_master <<< "$out"
if [ "$fsname" != "fusen-basic" ]; then
continue
fi
laster_master=`echo $(GOPROXY=direct go get $fsfullname@master 2>&1) | grep -oE '@v[^:"]+'`
if [ "@$fslatest_master" == "$laster_master" ]; then
continue
fi
echo "go mod edit -replace $fsname@$fsversion=$fsfullname$laster_master"
go mod edit -replace $fsname@$fsversion=$fsfullname$laster_master
done
IFS=$'\n' # 设置分隔符为换行符
for out in $output; do
IFS=$' '
read -r fsname fsversion fsfullname fslatest_master <<< "$out"
echo "当前 $fsname $fsfullname $fslatest_master (更新)-> $laster_master"
go get $fsname@$fsversion
ischange="yes"
done
if [ "$ischange" == "yes" ]; then
echo "go tidy and vendor"
go mod tidy
go mod vendor
else
echo "$fsname $fslatest_master 当前最新"
fi