summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-11-03 06:50:10 -0600
committerJeff Carr <[email protected]>2025-11-03 06:50:10 -0600
commitcfcd378646109344bcb2224622660e9a180f6570 (patch)
tree5abbac365e7e9754c91a641d6dae98e830113c8a /main.go
parent7048a8df551807ed72ff2d77baec17a9b65112ea (diff)
testing remote refs stuffHEADv0.0.39v0.0.38v0.0.37masterdevel
Diffstat (limited to 'main.go')
-rw-r--r--main.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.go b/main.go
index 77ac462..0082c19 100644
--- a/main.go
+++ b/main.go
@@ -51,6 +51,15 @@ func main() {
badExit(err)
}
+ if argv.Repo != "" {
+ err := doRepoRefs(argv.Repo)
+ if err != nil {
+ argvpb.BadExit("MakeRefs() failed", err)
+ }
+
+ argvpb.GoodExit("MakeRefs() ok")
+ }
+
if argv.JsonFile != "" {
doJSON()
okExit("")