Skip to content

Commit

Permalink
comment code of new go version
Browse files Browse the repository at this point in the history
Signed-off-by: Ricardo Mateus <[email protected]>
  • Loading branch information
rjmateus committed Mar 22, 2021
1 parent 792e02d commit 0688557
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/rjmateus/uyuni-cli

go 1.9
go 1.11.13
3 changes: 2 additions & 1 deletion processor/externalCommand.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ func (tool externalToolCmd) Execute() error {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr

fmt.Println(cmd.String())
// removed since it doesn't exists on go 1.11.13, version used in obs..
//fmt.Println(cmd.String())
err := cmd.Run()
if err != nil {
fmt.Println(err)
Expand Down

0 comments on commit 0688557

Please sign in to comment.