File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ static std::string engineCommand() {
2727 const char * env = std::getenv (" BBEA_ENGINE_CMD" ); if (env && *env) return env;
2828 char exe[4096 ]; ssize_t n = readlink (" /proc/self/exe" , exe, sizeof (exe) - 1 );
2929 if (n > 0 ) { exe[n] = ' \0 ' ; std::string path (exe); auto slash = path.find_last_of (' /' ); if (slash != std::string::npos) return path.substr (0 , slash + 1 ) + " blackbelt-engine.sh" ; }
30- return " bin/blackbelt-engine.sh" ;
30+ return " modules/black-belt/ bin/blackbelt-engine.sh" ;
3131}
3232
3333static std::string outputHelper () {
3434 char exe[4096 ]; ssize_t n = readlink (" /proc/self/exe" , exe, sizeof (exe) - 1 );
3535 if (n > 0 ) { exe[n] = ' \0 ' ; std::string path (exe); auto slash = path.find_last_of (' /' ); if (slash != std::string::npos) return path.substr (0 , slash + 1 ) + " blackbelt-output.sh" ; }
36- return " bin/blackbelt-output.sh" ;
36+ return " modules/black-belt/ bin/blackbelt-output.sh" ;
3737}
3838
3939static bool copyExact (const std::string& src, const std::string& dst) {
You can’t perform that action at this time.
0 commit comments