We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cae29d commit c112c8dCopy full SHA for c112c8d
.travis.yml
main.go
@@ -1,21 +1,17 @@
1
package main
2
3
import (
4
- "fmt"
5
- "os"
6
- "path"
7
-
8
"github.com/DimensionDataResearch/dd-cloud-compute-terraform/ddcloud"
9
"github.com/hashicorp/terraform-plugin-sdk/plugin"
10
)
11
12
// The main program entry-point.
13
func main() {
14
- if len(os.Args) == 2 && os.Args[1] == "--version" {
15
- fmt.Printf("%s %s\n\n", path.Base(os.Args[0]), ddcloud.ProviderVersion)
16
17
- return
18
- }
+ //if len(os.Args) == 2 && os.Args[1] == "--version" {
+ // fmt.Printf("%s %s\n\n", path.Base(os.Args[0]), ddcloud.ProviderVersion)
+ //
+ // return
+ //}
19
20
plugin.Serve(&plugin.ServeOpts{
21
ProviderFunc: ddcloud.Provider,
0 commit comments