Skip to content
Snippets Groups Projects
Commit 4df88122 authored by Bart Slinger's avatar Bart Slinger Committed by Lorenz Meier
Browse files

Bebop 2: use sh instead of bash

parent 77d053ba
No related branches found
No related tags found
No related merge requests found
......@@ -482,7 +482,11 @@ std::string get_absolute_binary_path(const std::string &argv0)
int run_startup_bash_script(const std::string &commands_file, const std::string &absolute_binary_path,
int instance)
{
#ifdef __DF_BEBOP
std::string bash_command("sh ");
#else
std::string bash_command("bash ");
#endif
bash_command += commands_file + ' ' + std::to_string(instance);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment