diff options
Diffstat (limited to 'main')
-rw-r--r-- | main/command.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/command.go b/main/command.go index 0db545b..9403020 100644 --- a/main/command.go +++ b/main/command.go @@ -44,7 +44,7 @@ func (cmd AppendNextCommand) exec(state *ProgramState) { if err != nil { panic("Missing next value") } - state.value = append(state.value, nextItem.Value...) + state.value = walk.ConcatData(state.value, nextItem.Value) state.path = nextItem.Path } |