github.com/jdhenke/godel@v0.0.0-20161213181855-abeb3861bf0d/main/godel/main.go (about)

     1  // Copyright 2016 Palantir Technologies, Inc.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package main
    16  
    17  import (
    18  	"fmt"
    19  	"os"
    20  
    21  	"github.com/kardianos/osext"
    22  	"github.com/nmiyake/pkg/dirs"
    23  	"github.com/palantir/amalgomate/amalgomated"
    24  	"github.com/palantir/godel"
    25  	"github.com/pkg/errors"
    26  
    27  	"github.com/palantir/godel/cmd"
    28  	"github.com/palantir/godel/cmd/clicmds"
    29  )
    30  
    31  func main() {
    32  	gödelPath, err := osext.Executable()
    33  	if err != nil {
    34  		fmt.Printf("%+v\n", errors.Wrapf(err, "failed to determine path for current executable"))
    35  		os.Exit(1)
    36  	}
    37  
    38  	if err := dirs.SetGoEnvVariables(); err != nil {
    39  		fmt.Printf("%+v\n", errors.Wrapf(err, "failed to set Go environment variables"))
    40  		os.Exit(1)
    41  	}
    42  
    43  	cmdLibrary, err := clicmds.CfgCliCmdSet(gödelPath)
    44  	if err != nil {
    45  		fmt.Printf("%+v\n", errors.Wrapf(err, "failed to create CfgCliCmdSet"))
    46  		os.Exit(1)
    47  	}
    48  	os.Exit(amalgomated.RunApp(os.Args, cmd.GlobalFlagSet(), cmdLibrary, godel.App(gödelPath).Run))
    49  }