2 Star 10 Fork 1

cherry-game/cherry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ver.sh 599 Bytes
一键复制 编辑 原始数据 按行查看 历史
phantacix 提交于 2024-09-07 22:43 . update:从主仓库迁出examples
#!/bin/bash
echo "[VER] ------------------------------------------------------"
# shellcheck disable=SC2162
read -p "[VER] enter new version(eg. 1.3.14):" number
if [[ "$OSTYPE" == "linux"* ]]; then
echo "[VER] use sed"
sed -i 's/version = "[0-9.]*"/version = "'"${number}"'"/' const/const.go
sed -i 's/cherry v[0-9.]*/cherry v'${number}'/' components/**/go.mod
elif [[ "$OSTYPE" == "darwin"* ]]; then
echo "[VER] use gsed"
gsed -i 's/version = "[0-9.]*"/version = "'"${number}"'"/' const/const.go
gsed -i 's/cherry v[0-9.]*/cherry v'"${number}"'/' components/**/go.mod
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cherry-game/cherry.git
git@gitee.com:cherry-game/cherry.git
cherry-game
cherry
cherry
master

搜索帮助