shell attribute fix

This commit is contained in:
phanes
2023-02-16 03:27:16 -05:00
parent c129f72b91
commit 79bc82e365
3 changed files with 6 additions and 5 deletions

View File

@@ -16,7 +16,8 @@ std::string prefix_generator(
prefix = shell_path;
// if the shell takes an argument to execute a command, add it enclosed in quotes
if (shell_execution_arg != "") {
if ( shell_execution_arg != "" )
{
// add the execution arg
prefix += " " + shell_execution_arg + " ";
} else {