bb64 release v15

This commit is contained in:
Your Name 2025-05-12 21:02:02 +12:00
parent 61b61ca93d
commit ae67bccf47
2 changed files with 4 additions and 9 deletions

View File

@ -79,14 +79,9 @@ int update_bb64()
<< bash_script << std::endl;
// run the bash script
int ret = system(bash_script.c_str());
if (ret != 0)
{
std::cerr << "Failed to update bb64" << std::endl;
return -1;
}
return 0;
execlp("bash", "bash", "-c", bash_script.c_str(), (char *)nullptr);
std::cerr << "Failed to execute command." << std::endl;
return -1;
}
int decode_and_run(const std::string &encoded)

View File

@ -1 +1 @@
static const char *VERSION = "14";
static const char *VERSION = "15";