mirror of
https://github.com/go-kratos/kratos.git
synced 2025-01-28 03:57:02 +02:00
parent
b2689af39c
commit
61744753eb
@ -74,12 +74,13 @@ func run(cmd *cobra.Command, args []string) {
|
|||||||
done <- p.New(ctx, wd, repoURL, branch)
|
done <- p.New(ctx, wd, repoURL, branch)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if _, e := os.Stat(path.Join(wd, "go.mod")); os.IsNotExist(e) {
|
projectRoot := getgomodProjectRoot(wd)
|
||||||
done <- fmt.Errorf("🚫 go.mod don't exists in %s", wd)
|
if gomodIsNotExistIn(projectRoot) {
|
||||||
|
done <- fmt.Errorf("🚫 go.mod don't exists in %s", projectRoot)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
mod, e := base.ModulePath(path.Join(wd, "go.mod"))
|
mod, e := base.ModulePath(path.Join(projectRoot, "go.mod"))
|
||||||
if e != nil {
|
if e != nil {
|
||||||
panic(e)
|
panic(e)
|
||||||
}
|
}
|
||||||
@ -123,3 +124,18 @@ func getProjectPlaceDir(projectName string, fallbackPlaceDir string) string {
|
|||||||
// create project logic will check stat,so not check path stat here
|
// create project logic will check stat,so not check path stat here
|
||||||
return filepath.Dir(projectFullPath)
|
return filepath.Dir(projectFullPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getgomodProjectRoot(dir string) string {
|
||||||
|
if dir == filepath.Dir(dir) {
|
||||||
|
return dir
|
||||||
|
}
|
||||||
|
if gomodIsNotExistIn(dir) {
|
||||||
|
return getgomodProjectRoot(filepath.Dir(dir))
|
||||||
|
}
|
||||||
|
return dir
|
||||||
|
}
|
||||||
|
|
||||||
|
func gomodIsNotExistIn(dir string) bool {
|
||||||
|
_, e := os.Stat(path.Join(dir, "go.mod"))
|
||||||
|
return os.IsNotExist(e)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user