The current repo belongs to Paused status, and some functions are restricted. For details, please refer to the description of repo status
1 Star 0 Fork 656

可口可乐 / tale
Paused

forked from hellokaton / tale
Paused
 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
install.sh 659 Bytes
Copy Edit Raw Blame History
王爵 nice authored 2018-10-07 15:53 . :art:improve install script
#!/bin/sh
APP_NAME="tale"
get_latest_release() {
curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
grep '"tag_name":' | # Get tag line
sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value
}
TAG_VERSION=$(get_latest_release "otale/tale")
wget -N --no-check-certificate https://github.com/otale/tale/releases/download/$TAG_VERSION/tale.tar.gz
echo '下载完毕'
mkdir $APP_NAME
tar -zxvf $APP_NAME.tar.gz -C $APP_NAME && cd $APP_NAME
chmod +x tool
echo '安装成功,请进入 tale 目录执行 sh tool start 启动'
Java
1
https://gitee.com/zhaojian_Cola/tale.git
git@gitee.com:zhaojian_Cola/tale.git
zhaojian_Cola
tale
tale
master

Search