Skip to content

Commit

Permalink
Merge pull request #202 from thaJeztah/various_fixups
Browse files Browse the repository at this point in the history
Various small fix-ups
  • Loading branch information
dmcgowan authored Apr 5, 2022
2 parents 7e45f5c + 7fa1569 commit 164806d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ linters:
- unconvert
- gofmt
- goimports
- golint
- ineffassign
- revive
- vet
- unused
- misspell
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
# continuity

[![GoDoc](https://godoc.org/github.com/containerd/continuity?status.svg)](https://godoc.org/github.com/containerd/continuity)
[![Build Status](https://travis-ci.org/containerd/continuity.svg?branch=main)](https://travis-ci.org/containerd/continuity)
[![Go Reference](https://pkg.go.dev/badge/github.com/containerd/continuity.svg)](https://pkg.go.dev/github.com/containerd/continuity)
[![Build Status](https://github.com/containerd/continuity/workflows/Continuity/badge.svg)](https://github.com/containerd/continuity/actions?query=workflow%3AContinuity+branch%3Amain)

A transport-agnostic, filesystem metadata manifest system

This project is a staging area for experiments in providing transport agnostic
metadata storage.

Please see https://github.com/opencontainers/specs/issues/11 for more details.
See [opencontainers/runtime-spec#11](https://github.com/opencontainers/runtime-spec/issues/11)
for more details.

## Manifest Format

A continuity manifest encodes filesystem metadata in Protocol Buffers.
Please refer to [proto/manifest.proto](proto/manifest.proto).
Refer to [proto/manifest.proto](proto/manifest.proto) for more details.

## Usage

Expand Down Expand Up @@ -65,7 +66,7 @@ $ ./bin/continuity verify . /tmp/a.pb

## Platforms

continuity primarily targets Linux. continuity may compile for and work on
continuity primarily targets Linux. Continuity may compile for and work on
other operating systems, but those platforms are not tested.

## Contribution Guide
Expand Down
2 changes: 1 addition & 1 deletion fs/copy.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var bufferPool = &sync.Pool{
},
}

// XAttrErrorHandlers transform a non-nil xattr error.
// XAttrErrorHandler transform a non-nil xattr error.
// Return nil to ignore an error.
// xattrKey can be empty for listxattr operation.
type XAttrErrorHandler func(dst, src, xattrKey string, err error) error
Expand Down
3 changes: 1 addition & 2 deletions fs/diff.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@ import (
"path/filepath"
"strings"

"golang.org/x/sync/errgroup"

"github.com/sirupsen/logrus"
"golang.org/x/sync/errgroup"
)

// ChangeKind is the type of modification that
Expand Down
52 changes: 0 additions & 52 deletions sysx/generate.sh

This file was deleted.

0 comments on commit 164806d

Please sign in to comment.