From cc4843ed22f213a0b63be3534167d8dbbc372b12 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Fri, 31 Jan 2014 12:00:42 +0100 Subject: [PATCH] devcam: mount: ditch xterm flag Change-Id: Id0b003698aa28c3c506df8031597c4bd19c034f8 --- dev/devcam/cammount.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/dev/devcam/cammount.go b/dev/devcam/cammount.go index d32d60ec5..e89e7b1a0 100644 --- a/dev/devcam/cammount.go +++ b/dev/devcam/cammount.go @@ -38,7 +38,6 @@ type mountCmd struct { port string tls bool debug bool - xterm bool // end of flag vars env *Env @@ -56,7 +55,6 @@ func init() { flags.StringVar(&cmd.path, "path", "/", "Optional URL prefix path.") flags.StringVar(&cmd.port, "port", "3179", "Port camlistore is listening on.") flags.BoolVar(&cmd.debug, "debug", false, "print debugging messages.") - flags.BoolVar(&cmd.xterm, "xterm", false, "Run an xterm in the mounted directory. Shut down when xterm ends.") return cmd }) } @@ -107,7 +105,6 @@ func (c *mountCmd) RunCommand(args []string) error { cmdBin := filepath.Join("bin", "cammount") cmdArgs := []string{ - "-xterm=" + strconv.FormatBool(c.xterm), "-debug=" + strconv.FormatBool(c.debug), "-server=" + blobserver, }