diff options
| author | 2024-09-23 09:51:17 -0400 | |
|---|---|---|
| committer | 2024-09-23 09:51:17 -0400 | |
| commit | b578aef7bf03fad539969aa671829e1a8643248b (patch) | |
| tree | 0d1ac4d5d39de29c1cf7d4d682c09c50446b9821 /src/lua_api.c | |
| parent | Update README.md (diff) | |
| parent | implemented piping into new chaining method (diff) | |
Merge pull request #2 from BanceDev/chaining-operators
Chaining operators
Diffstat (limited to 'src/lua_api.c')
| -rw-r--r-- | src/lua_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua_api.c b/src/lua_api.c index 99892c7..d40489c 100644 --- a/src/lua_api.c +++ b/src/lua_api.c @@ -99,7 +99,7 @@ static int execute_command(lua_State *L, const char *line) { int status = 0; lush_push_history(line); char *expanded_line = lush_resolve_aliases((char *)line); - char **commands = lush_split_pipes(expanded_line); + char **commands = lush_split_commands(expanded_line); char ***args = lush_split_args(commands, &status); if (status == -1) { |
