Fix sym --append not requiring file name

This commit is contained in:
pjht 2022-10-19 10:29:06 -05:00
parent e0fbebfbc3
commit 57f7c0fabe

View File

@ -427,6 +427,7 @@ fn main() -> Result<(), ReplError> {
.long("append")
.short('a')
.action(ArgAction::SetTrue)
.requires("file")
.help("Append the file's symbols to the loaded list of symbols"),
)
.about("Load symbols from an ELF file, or list symbols if no file provided"),