summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/xmake/os/args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/xmake/os/args.c b/core/src/xmake/os/args.c
index 49a459248..9a8a5b075 100644
--- a/core/src/xmake/os/args.c
+++ b/core/src/xmake/os/args.c
@@ -46,7 +46,7 @@ static tb_void_t tb_os_args_append(tb_string_ref_t result, tb_char_t const* cstr
{
while ((ch = *p))
{
- if (ch == ' ' || ch == '(' || ch == ')') wrap_quote = tb_true;
+ if (ch == ' ') wrap_quote = tb_true;
p++;
}
}