From d6fb760f1ffc6ec2f35cdc3bfc9a8bcee9301fc1 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Sat, 11 Nov 2017 17:04:05 -0500 Subject: [PATCH] Fixing a small bug in new project --- 4coder_project_commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/4coder_project_commands.cpp b/4coder_project_commands.cpp index d7092d31..a68348e3 100644 --- a/4coder_project_commands.cpp +++ b/4coder_project_commands.cpp @@ -740,13 +740,13 @@ CUSTOM_COMMAND_SIG(setup_new_project){ replace_str(&output_dir, "\\\\", "/"); replace_str(&binary_file, "\\\\", "/"); - fprintf(project_script, "fkey_command_linux[1] = {\"build.sh\", \"*compilation*\", true , true };\n"); + fprintf(project_script, "fkey_command_linux[1] = {\"./build.sh\", \"*compilation*\", true , true };\n"); fprintf(project_script, "fkey_command_linux[2] = {\"%.*s/%.*s\", \"*run*\", false , true };\n", output_dir.size, output_dir.str, binary_file.size, binary_file.str); - fprintf(project_script, "fkey_command_mac[1] = {\"build.sh\", \"*compilation*\", true , true };\n"); + fprintf(project_script, "fkey_command_mac[1] = {\"./build.sh\", \"*compilation*\", true , true };\n"); fprintf(project_script, "fkey_command_mac[2] = {\"%.*s/%.*s\", \"*run*\", false , true };\n", output_dir.size, output_dir.str,