Skip to content

Commit

Permalink
Merge pull request #10238 from bparees/cmd_packaging
Browse files Browse the repository at this point in the history
Merged by openshift-bot
  • Loading branch information
OpenShift Bot authored Aug 10, 2016
2 parents 898ac86 + 70523a7 commit 987d2ba
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 2 additions & 0 deletions pkg/build/cmd/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Package cmd provides command helpers for builds
package cmd
2 changes: 1 addition & 1 deletion pkg/build/reaper/reaper.go → pkg/build/cmd/reaper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reaper
package cmd

import (
"sort"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package reaper
package cmd

import (
"fmt"
Expand Down
2 changes: 0 additions & 2 deletions pkg/build/reaper/doc.go

This file was deleted.

4 changes: 2 additions & 2 deletions pkg/cmd/util/clientcmd/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ import (
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
authorizationreaper "github.com/openshift/origin/pkg/authorization/reaper"
buildapi "github.com/openshift/origin/pkg/build/api"
buildreaper "github.com/openshift/origin/pkg/build/reaper"
buildcmd "github.com/openshift/origin/pkg/build/cmd"
buildutil "github.com/openshift/origin/pkg/build/util"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/cli/describe"
Expand Down Expand Up @@ -330,7 +330,7 @@ func NewFactory(clientConfig kclientcmd.ClientConfig) *Factory {
if err != nil {
return nil, err
}
return buildreaper.NewBuildConfigReaper(oc), nil
return buildcmd.NewBuildConfigReaper(oc), nil
}
return kReaperFunc(mapping)
}
Expand Down

0 comments on commit 987d2ba

Please sign in to comment.