aboutsummaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/parser/parser.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/backend/parser/parser.go b/backend/parser/parser.go
index 941b934..bf456d4 100644
--- a/backend/parser/parser.go
+++ b/backend/parser/parser.go
@@ -35,8 +35,6 @@ func ProcessDemo(demoPath string) (int, int, error) {
35 } 35 }
36 } 36 }
37 } 37 }
38 if err := cmd.Wait(); err != nil { 38 cmd.Wait()
39 return 0, 0, err
40 }
41 return portalCount, cmTicks, nil 39 return portalCount, cmTicks, nil
42} 40}