fix .gitignore and binary path

Changed files
+3 -13
cli
+1
.gitignore
···
target/
+
cli/history.txt
-11
cli/history.txt
···
-
#V2
-
help
-
get_did_key key_index=0 display=true
-
get_did_key
-
get_did_key --key_index 0
-
get_did_key key_index=0
-
get_key_index
-
get_did_key
-
exit
-
get_key_index
-
get_did_key
+2 -2
cli/src/main.rs
···
let args = Args::parse();
let default_app_path = if args.native {
-
"../target/x86_64-unknown-linux-gnu/release/vnd-atproto-app"
+
"../target/x86_64-unknown-linux-gnu/release/vnd-atproto"
} else {
-
"../target/riscv32imc-unknown-none-elf/release/vnd-atproto-app"
+
"../target/riscv32imc-unknown-none-elf/release/vnd-atproto"
};
let app_path_str = args.app.unwrap_or(default_app_path.to_string());