aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorBryan McNulty <bryanmcnulty@protonmail.com>2025-04-22 15:49:46 -0500
committerBryan McNulty <bryanmcnulty@protonmail.com>2025-04-22 15:49:46 -0500
commitccef329bcdb90809cfd5b99ae646c397ee3c13ae (patch)
treeb44c7581f20f21374f5ccfe731be65ea87160031 /cmd
parentb76db931dc73df38476940d44c7f50e06f298152 (diff)
downloadgoexec-ccef329bcdb90809cfd5b99ae646c397ee3c13ae.tar.gz
goexec-ccef329bcdb90809cfd5b99ae646c397ee3c13ae.zip
Fixed proxy w/ EPM, fixed TSCH with ncacn_np
Diffstat (limited to 'cmd')
-rw-r--r--cmd/args.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/args.go b/cmd/args.go
index 51b490f..9568395 100644
--- a/cmd/args.go
+++ b/cmd/args.go
@@ -46,7 +46,7 @@ func registerExecutionFlags(fs *pflag.FlagSet) {
func registerExecutionOutputFlags(fs *pflag.FlagSet) {
fs.StringVarP(&outputPath, "out", "o", "", `Fetch execution output to file or "-" for standard output`)
fs.StringVarP(&outputMethod, "out-method", "m", "smb", "Method to fetch execution output")
- fs.StringVar(&exec.Output.RemotePath, "out-remote", "", "Location to temporarily store output on remote filesystem")
+ //fs.StringVar(&exec.Output.RemotePath, "out-remote", "", "Location to temporarily store output on remote filesystem")
fs.BoolVar(&exec.Output.NoDelete, "no-delete-out", false, "Preserve output file on remote filesystem")
}