Skip to content

Commit

Permalink
httpcaddyfile: Revert wrap err
Browse files Browse the repository at this point in the history
  • Loading branch information
francislavoie committed May 8, 2020
1 parent f1cd108 commit 8f769de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caddyconfig/httpcaddyfile/httptype.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (ServerType) evaluateGlobalOptionsBlock(serverBlocks []serverBlock, options

val, err = dirFunc(disp)
if err != nil {
return nil, fmt.Errorf("parsing caddyfile tokens for '%s': %w", dir, err)
return nil, fmt.Errorf("parsing caddyfile tokens for '%s': %v", dir, err)
}

options[dir] = val
Expand Down

0 comments on commit 8f769de

Please sign in to comment.