<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/main/command.go
diff options
context:
space:
mode:
Diffstat (limited to 'main/command.go')
-rw-r--r--main/command.go2
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
}