-
Notifications
You must be signed in to change notification settings - Fork 3
/
git_clone.go
53 lines (43 loc) · 1.05 KB
/
git_clone.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
51
52
53
package main
import (
"flag"
"fmt"
"os"
"strings"
"github.com/hexops/cmder"
"github.com/hexops/wrench/internal/wrench/scripts"
)
func init() {
const usage = `
Examples:
Clone all repositories:
$ wrench git clone
`
// Parse flags for our subcommand.
flagSet := flag.NewFlagSet("clone", flag.ExitOnError)
// Handles calls to our subcommand.
handler := func(args []string) error {
_ = flagSet.Parse(args)
for _, repo := range scripts.AllRepos {
repoName := strings.Split(repo.Name, "/")[1]
if _, err := os.Stat(repoName); os.IsNotExist(err) {
err := scripts.ExecArgs("git", []string{"clone", "[email protected]:" + repo.Name, repoName})(os.Stderr)
if err != nil {
return err
}
}
}
return nil
}
// Register the command.
gitCommands = append(gitCommands, &cmder.Command{
FlagSet: flagSet,
Aliases: []string{},
Handler: handler,
UsageFunc: func() {
fmt.Fprintf(flag.CommandLine.Output(), "Usage of 'wrench git clone %s':\n", flagSet.Name())
flagSet.PrintDefaults()
fmt.Printf("%s", usage)
},
})
}