aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/launcher/bash_launcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/launcher/bash_launcher.cc')
-rw-r--r--src/tools/launcher/bash_launcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/launcher/bash_launcher.cc b/src/tools/launcher/bash_launcher.cc
index e1203a3f58..af0047d45a 100644
--- a/src/tools/launcher/bash_launcher.cc
+++ b/src/tools/launcher/bash_launcher.cc
@@ -30,7 +30,7 @@ ExitCode BashBinaryLauncher::Launch() {
string bash_binary = this->GetLaunchInfoByKey(BASH_BIN_PATH);
// If specified bash binary path doesn't exist, then fall back to
// bash.exe and hope it's in PATH.
- if (!DoesFilePathExist(bash_binary)) {
+ if (!DoesFilePathExist(bash_binary.c_str())) {
bash_binary = "bash.exe";
}