踩坑系列之go的unexpected directory layout
Posted 咖啡色的羊驼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了踩坑系列之go的unexpected directory layout相关的知识,希望对你有一定的参考价值。
前言
在本地起了一个test项目,用于日常的小测试,然后写了一个单测的代码,发现报错了。
网上找了一下答案,发现也有小伙伴遇到。说实话没看懂,写的太不直接了。
所以用最短的话,记录一下。
正文
在执行go test命令的时候,报错内容:
unexpected directory layout:
import path: _/Users/didi/go/src/test/gotest/lib
root: /Users/didi/go/src
dir: /Users/didi/go/src/test/gotest/lib
expand root: /Users/didi/go
expand dir: /Users/didi/go/src/test/gotest/lib
separator: /
问题的根本原因:lib目录重名了!!
(查看expand dir最后一个单词,就是你重名的文件夹)
解决:
1.删掉它
2.改名字(我选择改成了libs)
如果你觉得有收获~可以关注我的公众号【咖啡色的羊驼】~第一时间收到我的分享和知识梳理~
以上是关于踩坑系列之go的unexpected directory layout的主要内容,如果未能解决你的问题,请参考以下文章
Unexpected directive 'XXX' imported by the module 'AppMoode'