diff --git a/go.mod b/go.mod index b0bdfc3..b319b48 100644 --- a/go.mod +++ b/go.mod @@ -1,11 +1,19 @@ module github.com/haunt98/dotfiles -go 1.16 +go 1.17 + +require ( + github.com/haunt98/color v0.2.0 + github.com/make-go-great/copy-go v0.8.0 + github.com/urfave/cli/v2 v2.3.0 +) require ( github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect - github.com/haunt98/color v0.2.0 - github.com/haunt98/copy-go v0.7.0 - github.com/urfave/cli/v2 v2.3.0 + github.com/fatih/color v1.12.0 // indirect + github.com/mattn/go-colorable v0.1.8 // indirect + github.com/mattn/go-isatty v0.0.13 // indirect + github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect + github.com/russross/blackfriday/v2 v2.1.0 // indirect golang.org/x/sys v0.0.0-20210818153620-00dd8d7831e7 // indirect ) diff --git a/go.sum b/go.sum index 0873cef..afee970 100644 --- a/go.sum +++ b/go.sum @@ -6,8 +6,8 @@ github.com/fatih/color v1.12.0 h1:mRhaKNwANqRgUBGKmnI5ZxEk7QXmjQeCcuYFMX2bfcc= github.com/fatih/color v1.12.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM= github.com/haunt98/color v0.2.0 h1:SvzXU4cmQTrxQCJ5WaLyCF1lqhJilkfeF5bJgWatGBY= github.com/haunt98/color v0.2.0/go.mod h1:lp75YVDcNuGgMemx8srNli5gwH8a6qEfFKgPl7e1q8s= -github.com/haunt98/copy-go v0.7.0 h1:rmEGI3KEmtjPPDd97bPW3IsAXMfLXQoetk8I83Rf37U= -github.com/haunt98/copy-go v0.7.0/go.mod h1:6t+cjKYf8mjMrEV+iHhNlLrqRWbiDehm4jsRBeqg+3A= +github.com/make-go-great/copy-go v0.8.0 h1:AgMSCm4E6+2oZPQv9UR59nc0y1Q0TaYl88ypPJxjA4k= +github.com/make-go-great/copy-go v0.8.0/go.mod h1:QQii7A48OAcQMloNG5YV0USARmxHf3JLS9ieONO1WQA= github.com/mattn/go-colorable v0.1.8 h1:c1ghPdyEDarC70ftn0y+A/Ee++9zz8ljHG1b13eJ0s8= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= diff --git a/internal/config/config_real.go b/internal/config/config_real.go index 20ebf8c..5bc5c70 100644 --- a/internal/config/config_real.go +++ b/internal/config/config_real.go @@ -5,7 +5,7 @@ import ( "os" "path/filepath" - "github.com/haunt98/copy-go" + "github.com/make-go-great/copy-go" ) type configReal struct {