Fix LFSBuildSession method call
- Fix buildPackageWithFallback to BuildPackageWithFallback in lfs_linux.go - Resolve compilation error with public interface method
This commit is contained in:
parent
1d61cf20f9
commit
61209c9f5e
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ func (s *LFSBuildSession) BuildOptimized(pkgName string) (string, error) {
|
|||
}
|
||||
|
||||
// Build with fallback
|
||||
return s.buildPackageWithFallback(pkgName, false, false, []string{})
|
||||
return s.BuildPackageWithFallback(pkgName, false, false, []string{})
|
||||
}
|
||||
|
||||
// InstallToFakeroot installs built package to fakeroot
|
||||
|
|
|
|||
Loading…
Reference in a new issue