summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorruki <[email protected]>2022-12-28 23:09:17 +0800
committerruki <[email protected]>2022-12-28 23:09:17 +0800
commita24bcd842bbee7085e73046da762af16e48afcb5 (patch)
tree472bd3515a332ed6901b7872de3a3bf6e71f1067 /core/src
parentfeab38a66eb37fbef62aee163c948caf9cec2258 (diff)
improve os.args
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++;
}
}