Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [0.21.1]

### Fixed
- Clean closure of kic executable during firmware upgrade
- Error when sending a large TSP script to the terminal
- CLI gets all messed up on USBTMC
- Connecting to MP5000 mainframe over different interfaces prompts for password
Expand Down
7 changes: 1 addition & 6 deletions kic/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,12 +282,7 @@ fn main() -> anyhow::Result<()> {

if let Some(kv) = kic_visa_exe {
if kv.exists() {
Process::new(kv.clone(), std::env::args().skip(1))
.exec_replace()
.context(format!(
"{} should have been launched because VISA was detected",
kv.display(),
))?;
let _ = Process::new(kv.clone(), std::env::args().skip(1)).exec_replace();
return Ok(());
}
}
Expand Down
Loading