-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
50 lines (40 loc) · 974 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package main
import (
"encoding/hex"
"fmt"
"github.com/draganm/gosha/gosha"
"github.com/urfave/cli/v2"
)
func main() {
cliFlags := struct {
includeStdlib bool
includeTestFiles bool
}{}
app := &cli.App{
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "include-stdlib",
EnvVars: []string{"INCLUDE_STDLIB"},
Destination: &cliFlags.includeStdlib,
},
&cli.BoolFlag{
Name: "include-testfiles",
EnvVars: []string{"INCLUDE_TESTFILES"},
Destination: &cliFlags.includeTestFiles,
},
},
Action: func(c *cli.Context) error {
packagePath := c.Args().First()
if packagePath == "" {
packagePath = "."
}
finalSHA, err := gosha.CalculatePackageSHA(packagePath, cliFlags.includeStdlib, cliFlags.includeTestFiles)
if err != nil {
return fmt.Errorf("could not calculate package sha: %w", err)
}
fmt.Println(hex.EncodeToString(finalSHA))
return nil
},
}
app.RunAndExitOnError()
}