diff options
| author | Schuyler Eldridge | 2020-01-06 15:52:19 -0500 |
|---|---|---|
| committer | mergify[bot] | 2020-01-06 20:52:19 +0000 |
| commit | dcf0076ca9b4b3c094d2d082717265fb4e326ae0 (patch) | |
| tree | 71318554d66cc651cb487b83f2ae7038da834617 | |
| parent | 9e1c22445961e6ce7c52c9b2bb7f626e649e38af (diff) | |
Remove incorrect --firrtl-source option (#1266)
This removes the incorrect short --firrtl-source option. This was
supposed to be the helpValueName.
Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
| -rw-r--r-- | src/main/scala/firrtl/stage/FirrtlAnnotations.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/stage/FirrtlAnnotations.scala b/src/main/scala/firrtl/stage/FirrtlAnnotations.scala index aa3fed2b..5be84bb9 100644 --- a/src/main/scala/firrtl/stage/FirrtlAnnotations.scala +++ b/src/main/scala/firrtl/stage/FirrtlAnnotations.scala @@ -131,7 +131,7 @@ object FirrtlSourceAnnotation extends HasShellOptions { longOption = "firrtl-source", toAnnotationSeq = a => Seq(FirrtlSourceAnnotation(a)), helpText = "An input FIRRTL circuit string", - shortOption = Some("<string>") ) ) + helpValueName = Some("<string>") ) ) } |
