当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 5 Fork 1

joe_chou/tug
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.sh 741 Bytes
一键复制 编辑 原始数据 按行查看 历史
joezou 提交于 2017-11-11 22:35 . init project
#!/bin/bash
fileName="package.properties"
build(){
read -p "enter your GOPATH(no enter will use parent path of src): " goPath
echo "==============Set path=============="
if [ -n "$goPath" ]; then
export GOPATH=$goPath
else
currentPath=`pwd`
export GOPATH=${currentPath%src*}
fi
echo "installing package!"
reimport
echo "build successfully!"
}
reimport() {
echo "==============import=============="
echo "Current GOPATH :"
echo $GOPATH
for line in `cat $fileName`
do
echo "installing $line!"
gopm get "$line" -v -g
done
}
case "$1" in
build)
build ;;
reimport)
reimport ;;
*)
echo $"Usage: $0 {build|reimport}"
exit 1
esac
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/joezou/tug.git
[email protected]:joezou/tug.git
joezou
tug
tug
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385