Skip to content

Commit

Permalink
Merge pull request #317 from reixd/patch-3
Browse files Browse the repository at this point in the history
Fix bash syntax error
  • Loading branch information
xetys authored Feb 18, 2020
2 parents a8f57f1 + 64a3672 commit 5ee89ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/addons/addon_openebs.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ parameters:
err = addon.communicator.WriteFile(node, "/root/openebs-storageclass.yaml", improvedStorageClass, clustermanager.AllRead)
FatalOnError(err)

_, err = addon.communicator.RunCmd(node, "kubectl delete -f openebs-storageclass.yaml && kubectl apply -f openebs-storageclass.yaml")
_, err = addon.communicator.RunCmd(node, "kubectl delete -f openebs-storageclass.yaml ; kubectl apply -f openebs-storageclass.yaml")
FatalOnError(err)

fmt.Println("OpenEBS installed")
Expand Down

0 comments on commit 5ee89ce

Please sign in to comment.