Skip to content

Commit

Permalink
remove tmp test file
Browse files Browse the repository at this point in the history
  • Loading branch information
iiSeymour committed Oct 5, 2022
1 parent 20a77f8 commit aa3b5d2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dorado/cli/download.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ int download(int argc, char* argv[]) {
return 1;
}

try {
fs::remove(directory / "tmp");
} catch (std::filesystem::filesystem_error const& e) {
std::cerr << "> error: " << e.code().message() << std::endl;
return 1;
}

httplib::Client http(basecaller::URL_ROOT);
http.enable_server_certificate_verification(false);
http.set_follow_location(true);
Expand Down

0 comments on commit aa3b5d2

Please sign in to comment.