summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authors <[email protected]>2025-11-06 22:24:43 -0500
committers <[email protected]>2025-11-06 22:24:43 -0500
commitd9990f48d76bf13f59b582e13eb66b1756457bfb (patch)
tree08fbd124e765e14a7e9a3196dfe266bd67236aca /cmd
parent5f0e15788032951f215bda1df3b5ce1e55125f59 (diff)
downloaddborg-d9990f48d76bf13f59b582e13eb66b1756457bfb.tar.gz
dborg-d9990f48d76bf13f59b582e13eb66b1756457bfb.zip
feat: add osint, reddit, and skiptrace commands and update installation to use @latestv0.3.0
Diffstat (limited to 'cmd')
-rw-r--r--cmd/update.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/update.go b/cmd/update.go
index c1aaec3..fe1e958 100644
--- a/cmd/update.go
+++ b/cmd/update.go
@@ -11,11 +11,11 @@ import (
var updateCmd = &cobra.Command{
Use: "update",
Short: "Update dborg to the latest version",
- Long: `Update dborg by running go install git.db.org.ai/dborg`,
+ Long: `Update dborg by running go install git.db.org.ai/dborg@latest`,
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Updating dborg...")
- installCmd := exec.Command("go", "install", "git.db.org.ai/dborg")
+ installCmd := exec.Command("go", "install", "git.db.org.ai/dborg@latest")
installCmd.Stdout = os.Stdout
installCmd.Stderr = os.Stderr