diff options
Diffstat (limited to 'subex/main.go')
-rw-r--r-- | subex/main.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/subex/main.go b/subex/main.go index 593dbbd..2a5f5ad 100644 --- a/subex/main.go +++ b/subex/main.go @@ -118,7 +118,11 @@ func Main() { return } - valueOut := walk.MemoryCompound(output) + valueOut, error := walk.MemoryCompound(output) + if error != nil { + fmt.Println(error.Error()) + return + } for _, value := range valueOut { fmt.Println(value) } |