From 1e89cb9e796444d8ca85bca04f3beb413748ead3 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Wed, 13 Feb 2019 20:16:02 -0800 Subject: [PATCH] Fixed exec_system_command problem --- 4ed_api_implementation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/4ed_api_implementation.cpp b/4ed_api_implementation.cpp index 21b2db18..e7b85c66 100644 --- a/4ed_api_implementation.cpp +++ b/4ed_api_implementation.cpp @@ -302,7 +302,7 @@ DOC_SEE(Command_Line_Interface_Flag) // NOTE(allen): Figure out the command string. String command_string = {}; - if (command.size){ + if (command.size == 0){ command_string = make_lit_string(" echo no script specified"); } else{