1 Star 0 Fork 77

Super_Mario/webconsole

forked from 魏大伟/webconsole 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 689 Bytes
一键复制 编辑 原始数据 按行查看 历史
Eriloan 提交于 2017-02-27 11:23 . Update go
#!/usr/bin/env bash
#
# Auth:Eric Shi
# Email:shibingli@yeah.net
# QQ:155122504
#
#
DIRNAME=$(cd "$(dirname "$0")"; pwd)
which go > /dev/null 2>&1
if [[ $? -eq 0 ]]; then
echo ""
echo "==> Golang is already installed."
else
echo "==> Install Golang."
echo ""
tar -zxvf $DIRNAME/go1.8.linux-amd64.tar.gz -C /usr/local
echo ""
export PATH=/usr/local/go/bin:$PATH
fi
which go > /dev/null 2>&1
if [[ $? -eq 0 ]]; then
export GOPATH=$DIRNAME
git submodule update --init --recursive
cd $GOPATH/src/apibox.club/apibox/ && go install
echo ""
echo "==> Please run the $GOPATH/bin/apibox."
echo ""
else
echo "==> Please install Golang."
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/supermarioX/webconsole.git
git@gitee.com:supermarioX/webconsole.git
supermarioX
webconsole
webconsole
master

搜索帮助