From 8418f8a7d0b74e79026254b4ad23c67dd77fe5f0 Mon Sep 17 00:00:00 2001
From: max furman <mx.furman@gmail.com>
Date: Mon, 26 Aug 2019 18:56:57 -0700
Subject: [PATCH] Update location for plist - screwing up `go mod`

---
 .gitignore           | 9 +++++++++
 Gopkg.lock           | 4 ++--
 Gopkg.toml           | 2 +-
 truststore_darwin.go | 2 +-
 4 files changed, 13 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index f1c181e..930d57c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
 # Binaries for programs and plugins
+/bin/truststore
 *.exe
 *.exe~
 *.dll
@@ -10,3 +11,11 @@
 
 # Output of the go coverage tool, specifically when used with LiteIDE
 *.out
+
+# Others
+*.swp
+.travis-releases
+coverage.txt
+output
+vendor
+step
diff --git a/Gopkg.lock b/Gopkg.lock
index 17e2f19..2d65e23 100644
--- a/Gopkg.lock
+++ b/Gopkg.lock
@@ -4,7 +4,7 @@
 [[projects]]
   branch = "master"
   digest = "1:c10265d5a71326618d37e97169eddb3582f78e8ac7dcf87403b4cf619efd519a"
-  name = "github.com/DHowett/go-plist"
+  name = "howett.net/plist"
   packages = ["."]
   pruneopts = "UT"
   revision = "591f970eefbbeb04d7b37f334a0c4c3256e32876"
@@ -12,6 +12,6 @@
 [solve-meta]
   analyzer-name = "dep"
   analyzer-version = 1
-  input-imports = ["github.com/DHowett/go-plist"]
+  input-imports = ["howett.net/plist"]
   solver-name = "gps-cdcl"
   solver-version = 1
diff --git a/Gopkg.toml b/Gopkg.toml
index bfcdd0e..25d314f 100644
--- a/Gopkg.toml
+++ b/Gopkg.toml
@@ -27,7 +27,7 @@
 
 [[constraint]]
   branch = "master"
-  name = "github.com/DHowett/go-plist"
+  name = "howett.net/plist"
 
 [prune]
   go-tests = true
diff --git a/truststore_darwin.go b/truststore_darwin.go
index 49630af..bdc1f6c 100644
--- a/truststore_darwin.go
+++ b/truststore_darwin.go
@@ -12,7 +12,7 @@ import (
 	"os"
 	"os/exec"
 
-	plist "github.com/DHowett/go-plist"
+	plist "howett.net/plist"
 )
 
 var (
-- 
GitLab