-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.go
84 lines (79 loc) · 1.85 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package main
import (
"go.bbkane.com/warg"
"go.bbkane.com/warg/command"
"go.bbkane.com/warg/flag"
"go.bbkane.com/warg/path"
"go.bbkane.com/warg/section"
"go.bbkane.com/warg/value/scalar"
"go.bbkane.com/warg/value/slice"
)
var version string
func app() *warg.App {
linkUnlinkFlags := flag.FlagMap{
"--ask": flag.New(
"Whether to ask before making changes",
scalar.String(
scalar.Choices("true", "false", "dry-run"),
scalar.Default("true"),
),
flag.Required(),
),
"--dotfiles": flag.New(
"Files/dirs starting with 'dot-' will have links starting with '.'",
scalar.Bool(
scalar.Default(true),
),
flag.Required(),
),
"--ignore": flag.New(
"Ignore file/dir if the name (not the whole path) matches passed regex",
slice.String(
slice.Default([]string{"README.*"}),
),
flag.Alias("-i"),
flag.UnsetSentinel("UNSET"),
),
"--link-dir": flag.New(
"Symlinks will be created in this directory pointing to files/directories in --src-dir",
scalar.Path(
scalar.Default(path.New("~")),
),
flag.Alias("-l"),
flag.Required(),
),
"--src-dir": flag.New(
"Directory containing files and directories to link to",
scalar.Path(),
flag.Alias("-s"),
flag.Required(),
),
}
app := warg.New(
"fling",
section.New(
"Link and unlink directory heirarchies ",
section.Command(
"link",
"Create links",
link,
command.ExistingFlags(linkUnlinkFlags),
),
section.Command(
"unlink",
"Unlink previously created links",
unlink,
command.ExistingFlags(linkUnlinkFlags),
),
section.ExistingCommand("version", warg.VersionCommand()),
section.Footer("Homepage: https://github.com/bbkane/fling"),
),
warg.ExistingGlobalFlag("--color", warg.ColorFlag()),
warg.OverrideVersion(version),
warg.SkipValidation(),
)
return &app
}
func main() {
app().MustRun()
}