Skip to content

Commit

Permalink
fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersonQ committed Aug 30, 2023
1 parent 3624c23 commit 52273db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/pkg/agent/install/perms_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func recursiveRootPermissions(root string) error {
return nil
}
if err != nil {
return fmt.Errorf("walk on %q failed: %v", path, err)
return fmt.Errorf("walk on %q failed: %w", path, err)
}

// all files should be owned by root:root
Expand Down

0 comments on commit 52273db

Please sign in to comment.