Browse Source

Add more hint when searched path is wrong

Delete the old branch and pull a new one, because of a wrong force push. Git is not as easy as I think.

Signed-off-by: gr816ox <50945677+gr816ox@users.noreply.github.com>
pull/1230/head
gr816ox 3 years ago
committed by GitHub
parent
commit
b41209eb36
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      fesvr/htif.cc

6
fesvr/htif.cc

@ -112,6 +112,12 @@ std::map<std::string, uint64_t> htif_t::load_payload(const std::string& payload,
std::string test_path = PREFIX TARGET_DIR + payload;
if (access(test_path.c_str(), F_OK) == 0)
path = test_path;
else
throw std::runtime_error(
"could not open " + payload + "; searched paths:\n" +
"\t. (current directory)\n" +
"\t" + PREFIX TARGET_DIR + " (based on configured --prefix and --with-target)"
);
}
if (path.empty())

Loading…
Cancel
Save