mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-18 11:21:25 +00:00
Resolve peridot CLI build error due to unbound variable
This commit is contained in:
parent
ce6eb64ee2
commit
17601804f7
@ -32,12 +32,13 @@ package main
|
||||
|
||||
import (
|
||||
"encoding/base64"
|
||||
"github.com/spf13/cobra"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
"openapi.peridot.resf.org/peridotopenapi"
|
||||
"os"
|
||||
"time"
|
||||
|
||||
"github.com/spf13/cobra"
|
||||
"openapi.peridot.resf.org/peridotopenapi"
|
||||
)
|
||||
|
||||
type LookasideUploadTask struct {
|
||||
@ -103,7 +104,7 @@ func buildRpmImportMn(_ *cobra.Command, args []string) {
|
||||
log.Println("Triggering RPM batch import")
|
||||
|
||||
cl := getClient(serviceBuild).(peridotopenapi.BuildServiceApi)
|
||||
_, _, err := cl.RpmLookasideBatchImport(getContext(), projectId).
|
||||
importRes, _, err := cl.RpmLookasideBatchImport(getContext(), projectId).
|
||||
Body(peridotopenapi.InlineObject4{
|
||||
LookasideBlobs: &blobs,
|
||||
ForceOverride: &buildRpmImportForceOverride,
|
||||
|
Loading…
Reference in New Issue
Block a user