aboutsummaryrefslogtreecommitdiff
path: root/backend/parser/parser.go
diff options
context:
space:
mode:
authorArda Serdar Pektezol <1669855+pektezol@users.noreply.github.com>2023-09-23 18:14:08 +0300
committerGitHub <noreply@github.com>2023-09-23 18:14:08 +0300
commited9fe7f3f2c389cfa75860ae866cb50cf060309f (patch)
treed8afa27fbab9cb20c4a0da231014df81cff10452 /backend/parser/parser.go
parentfix: parser not launching (#83) (diff)
downloadlphub-ed9fe7f3f2c389cfa75860ae866cb50cf060309f.tar.gz
lphub-ed9fe7f3f2c389cfa75860ae866cb50cf060309f.tar.bz2
lphub-ed9fe7f3f2c389cfa75860ae866cb50cf060309f.zip
fix: dont check wait error (#83)
Former-commit-id: e69cfb12f97a87f75ed4981dcb2c6c3e8564992d
Diffstat (limited to 'backend/parser/parser.go')
-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}