mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 13:11:31 +00:00
Update variable names to be more apparent
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
This commit is contained in:
+3
-3
@@ -1950,13 +1950,13 @@ func (b *Builder) BuildDeltaPacksPreviousVersions(prev, to uint32, printReport b
|
||||
return nil
|
||||
}
|
||||
|
||||
func createDeltaPacks(from *swupd.Manifest, to *swupd.Manifest, printReport bool, outputDir, bundleDir string, numWorkers int) error {
|
||||
func createDeltaPacks(fromMoM *swupd.Manifest, toMoM *swupd.Manifest, printReport bool, outputDir, bundleDir string, numWorkers int) error {
|
||||
timer := &stopWatch{w: os.Stdout}
|
||||
defer timer.WriteSummary(os.Stdout)
|
||||
timer.Start("CREATE DELTA PACKS")
|
||||
|
||||
fmt.Printf("Creating delta packs from %d to %d\n", from.Header.Version, to.Header.Version)
|
||||
bundlesToPack, err := swupd.FindBundlesToPack(from, to)
|
||||
fmt.Printf("Creating delta packs from %d to %d\n", fromMoM.Header.Version, toMoM.Header.Version)
|
||||
bundlesToPack, err := swupd.FindBundlesToPack(fromMoM, toMoM)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user