-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replaced opts.InputFiles array with opts.InputFile string option
- Loading branch information
1 parent
632efba
commit 5468255
Showing
3 changed files
with
18 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package main | ||
|
||
type CommandLineOpts struct { | ||
InputFiles []string `short:"i" long:"input" description:"Input GBS files"` | ||
OutDir string `short:"o" long:"outdir" description:"Output directory" default:"./"` | ||
Version bool `short:"v" long:"version" description:"Show version and exit"` | ||
InputFile string `short:"i" long:"input" description:"Input GBS file"` | ||
OutDir string `short:"o" long:"outdir" description:"Output directory" default:"./"` | ||
Version bool `short:"v" long:"version" description:"Show version and exit"` | ||
} |