Skip to content

Commit

Permalink
Rebase on the latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia authored and salemhilal committed Jun 17, 2023
1 parent e113bdc commit 4ed7842
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions vcs/fake.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ func (g *FakeDriver) HeadRev(dir string) (string, error) {
return fmt.Sprintf("%x", hsh.Sum(nil)), nil
}

const fakeSpec = ".source"

func (g *FakeDriver) Pull(dir string) (string, error) {
return g.HeadRev(dir)
}
Expand All @@ -49,5 +47,9 @@ func (g *FakeDriver) Clone(dir, url string) (string, error) {
}

func (g *FakeDriver) SpecialFiles() []string {
return nil
return []string{}
}

func (g *FakeDriver) AutoGeneratedFiles(dir string) []string {
return []string{}
}

0 comments on commit 4ed7842

Please sign in to comment.