<- Back to shtanton's homepage
aboutsummaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/command.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/command.go b/main/command.go
index 55c7cca..0db545b 100644
--- a/main/command.go
+++ b/main/command.go
@@ -116,5 +116,5 @@ func (cmd SwapPathCommand) exec(state *ProgramState) {
type AppendPathCommand struct {}
func (cmd AppendPathCommand) exec(state *ProgramState) {
- state.path = append(state.path, state.value...)
+ state.path = walk.ConcatData(state.path, state.value)
} \ No newline at end of file