diff options
| author | ruki <[email protected]> | 2022-12-28 23:09:17 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2022-12-28 23:09:17 +0800 |
| commit | a24bcd842bbee7085e73046da762af16e48afcb5 (patch) | |
| tree | 472bd3515a332ed6901b7872de3a3bf6e71f1067 /core/src | |
| parent | feab38a66eb37fbef62aee163c948caf9cec2258 (diff) | |
improve os.args
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/xmake/os/args.c | 2 |
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++; } } |
