diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-26 05:18:48 -0500 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-04-26 05:18:48 -0500 |
commit | 7770ce5c15dff99c1100f9fe6e41c502a94cd713 (patch) | |
tree | 3aef1a4d027cecece4fc833af0777357334929e3 /cmd/args.go | |
parent | 00205e02bd1768254e5ee2519cf7027cbcab5ee6 (diff) | |
download | goexec-7770ce5c15dff99c1100f9fe6e41c502a94cd713.tar.gz goexec-7770ce5c15dff99c1100f9fe6e41c502a94cd713.zip |
Fixed some more linter issues
Diffstat (limited to 'cmd/args.go')
-rw-r--r-- | cmd/args.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/args.go b/cmd/args.go index 9568395..40b9701 100644 --- a/cmd/args.go +++ b/cmd/args.go @@ -29,10 +29,13 @@ func registerNetworkFlags(fs *pflag.FlagSet) { //cmd.MarkFlagsMutuallyExclusive("no-epm", "epm-filter") } +// FUTURE: automatically stage & execute file +/* func registerStageFlags(fs *pflag.FlagSet) { fs.StringVarP(&stageFilePath, "stage", "E", "", "File to stage and execute") //fs.StringVarP(&stageArgs ...) } +*/ func registerExecutionFlags(fs *pflag.FlagSet) { fs.StringVarP(&exec.Input.Executable, "exec", "e", "", "Remote Windows executable to invoke") |