timelog("start", "dist bootstrap")
defer timelog("end", "dist bootstrap")
- var noBanner, noClean bool
- var debug bool
- var force bool
+ var debug, force, noBanner, noClean bool
flag.BoolVar(&rebuildall, "a", rebuildall, "rebuild all")
flag.BoolVar(&debug, "d", debug, "enable debugging of bootstrap process")
+ flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
- flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
xflagparse(0)