audit:=flag.Bool("audit",false,"Output all symlinks that would be deleted. This is the default behavior. This option is mutually exclusive with the --seriously option.")
seriously:=flag.Bool("seriously",false,"Actually delete the symlinks. This option is mutually exclusive with the --audit option.")
repoName:=flag.String("repo-name","briefcase","The name of the repository.")
flag.Parse()
if!*audit&&!*seriously{
log.Fatal(errors.New("Either -audit or -seriously needs to be set."))
}
if*audit==*seriously{
log.Fatal(errors.New("Arguments -audit and -seriously are mutually exclusive"))