Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
vss: replace errors package with restic/internal/errors
  • Loading branch information
fgma committed May 13, 2019
1 parent 0c25e5f commit 83d08f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/fs/vss.go
Expand Up @@ -3,13 +3,13 @@
package fs

import (
"errors"
"github.com/restic/restic/internal/errors"
)

type VssSnapshot struct{}

func NewVssSnapshot(volume string, timeoutInSeconds uint) (VssSnapshot, error) {
return VssSnapshot{}, errors.New("VSS snapshots are only supported on windows.")
return VssSnapshot{}, errors.New("VSS snapshots are only supported on windows")
}

func (p *VssSnapshot) Delete() error {
Expand Down

0 comments on commit 83d08f3

Please sign in to comment.