You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/.codeeui.sh

13 lines
341 B

# 使用vendor文件夹构建
3 years ago
export GO15VENDOREXPERIMENT=1
3 years ago
export GOPROXY=https://goproxy.cn,direct
# 在工作目录创建源文件夹
3 years ago
mkdir -p $GOPATH/src/dtapps/
# 拷贝代码到创建好的目录
3 years ago
cp -rf . $GOPATH/src/dtapps/
# 进入项目
3 years ago
cd $GOPATH/src/dtapps/
# 构建在GOPATH下生成构建包
3 years ago
go mod tidy
# 列出文件
3 years ago
ls -lh