Skip to content

Commit

Permalink
Merge pull request #75 from replicatedhq/analyze-spec
Browse files Browse the repository at this point in the history
Fix
  • Loading branch information
marccampbell authored Oct 29, 2019
2 parents 5830eb3 + 0b493a5 commit 218b9c0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion ffi/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import "C"

import (
"fmt"
"context"
"encoding/json"

"gopkg.in/yaml.v2"
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyze/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type fileContentProvider struct {
rootDir string
}

func DownloadAndAnalyze(analyzersSpec string, bundleURL string) ([]*AnalyzeResult, error) {
func DownloadAndAnalyze(bundleURL string, analyzersSpec string) ([]*AnalyzeResult, error) {
tmpDir, err := ioutil.TempDir("", "troubleshoot-k8s")
if err != nil {
return nil, errors.Wrap(err, "failed to create temp dir")
Expand Down

0 comments on commit 218b9c0

Please sign in to comment.