diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-05-26 12:17:10 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-06-14 14:08:40 +0200 |
commit | 35fa192838ecfa244335fca957e55d3956a48665 (patch) | |
tree | 7a1dac873c8c219d0ca933aa2a36891d92764302 /commands | |
parent | 09ac73338198ceb143c1e5edc5859ab735cd80bb (diff) | |
download | hugo-35fa192838ecfa244335fca957e55d3956a48665.tar.gz hugo-35fa192838ecfa244335fca957e55d3956a48665.zip |
deps: Udpate to github.com/alecthomas/chroma/v2
Fixes #9932
Fixes #9931
Diffstat (limited to 'commands')
-rw-r--r-- | commands/genchromastyles.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/genchromastyles.go b/commands/genchromastyles.go index a2476ffdf..4dfa77d2e 100644 --- a/commands/genchromastyles.go +++ b/commands/genchromastyles.go @@ -16,9 +16,9 @@ package commands import ( "os" - "github.com/alecthomas/chroma" - "github.com/alecthomas/chroma/formatters/html" - "github.com/alecthomas/chroma/styles" + "github.com/alecthomas/chroma/v2" + "github.com/alecthomas/chroma/v2/formatters/html" + "github.com/alecthomas/chroma/v2/styles" "github.com/spf13/cobra" ) |