You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.
The file Dockerfile.test is covered by the *.test in the .gitignore file. This causes issues when using go dep, as it imports the repo but git ignores that file, leading to it not being vendored.
Fixes:
rename Dockerfile.test to something that isn't ignored (e.g., test-Dockerfile)
adjust the .gitignore to not ignore this file
The text was updated successfully, but these errors were encountered:
The file
Dockerfile.test
is covered by the*.test
in the.gitignore
file. This causes issues when usinggo dep
, as it imports the repo but git ignores that file, leading to it not being vendored.Fixes:
Dockerfile.test
to something that isn't ignored (e.g.,test-Dockerfile
).gitignore
to not ignore this fileThe text was updated successfully, but these errors were encountered: