You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 18, 2017. It is now read-only.
The way CommandLineUtils is built today, it does not allow for rest argument to equal any known arguments. This effectively means that any argument that the ApplicationHost knows about, cannot be used by applications running on top of it. For instance, if I create a command line application that uses CommandLineUtils and accepts --version, and then do k run --version, --version is picked up by the ApplicationHost, yet it doesn't display the k --version, nor does it launch my application. It fails with the error message that TODO: Error: unrecognized flag '--version'.
The text was updated successfully, but these errors were encountered:
The way
CommandLineUtils
is built today, it does not allow for rest argument to equal any known arguments. This effectively means that any argument that theApplicationHost
knows about, cannot be used by applications running on top of it. For instance, if I create a command line application that usesCommandLineUtils
and accepts--version
, and then dok run --version
,--version
is picked up by theApplicationHost
, yet it doesn't display thek --version
, nor does it launch my application. It fails with the error message thatTODO: Error: unrecognized flag '--version'
.The text was updated successfully, but these errors were encountered: