1 Star 0 Fork 0

JaykieQ / govendor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
gb.go 674 Bytes
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package migrate
import (
"errors"
"path/filepath"
)
func init() {
register("gb", sysGb{})
}
type sysGb struct{}
func (sys sysGb) Check(root string) (system, error) {
if hasDirs(root, "src", filepath.Join("vendor", "src")) {
return sys, nil
}
return nil, nil
}
func (sysGb) Migrate(root string) error {
// Move files from "src" to first GOPATH.
// Move vendor files from "vendor/src" to "vendor".
// Translate "vendor/manifest" to vendor.json file.
return errors.New("Migrate gb not implemented")
}
1
https://gitee.com/jaykieq/govendor.git
git@gitee.com:jaykieq/govendor.git
jaykieq
govendor
govendor
v1.0.9

搜索帮助