cli: ipfs2 config --show
is not functional. switch to ipfs config show
?
#310
Milestone
ipfs2 config --show
is not functional. switch to ipfs config show
?
#310
#263 changes
ipfs2 config --show
toipfs2 config show
.Previously,
--show
was used to avoid collisions with a key namedshow
. Recall:ipfs config <key>
is used to lookup keys.Three potential ways to proceed:
Allowipfs2 config show
with the awareness that we introduce potential for collision. While, in most cases, this will not be a problem, it is a poor compromise.Allowipfs2 config show
and changeipfs2 config <key>
toipfs2 config get <key>
. This avoids the collision, requires sign-off.Adapt the commands framework to handle this use-case as desired. (edit: by making them options on the super command)
edit: We decided to do away with the config subcommands make --show and --edit options in the super command.
The text was updated successfully, but these errors were encountered: