From 1ee3e6d213b5ced5358256904c0923b6ff7748a5 Mon Sep 17 00:00:00 2001 From: Indradhanush Gupta Date: Sat, 14 Sep 2019 16:20:51 +0530 Subject: [PATCH] go.mod: Comment out line to replace github.com/darkSasori/todist This line is producing the following error: ``` $ go mod vendor go mod vendor: open /home/dhanush/go/src/github.com/wtfutil/wtf/vendor/github.com/darkSasori/todoist: no such file or directory ``` Commenting it out fixes the error and produces new changes to go.mod, go.sum and the vendor directory. --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index de7800f4..4e8e1103 100644 --- a/go.mod +++ b/go.mod @@ -107,4 +107,4 @@ require ( k8s.io/client-go v12.0.0+incompatible ) -replace github.com/darkSasori/todoist => ./vendor/github.com/darkSasori/todoist +// replace github.com/darkSasori/todoist => ./vendor/github.com/darkSasori/todoist