From ed9fe7f3f2c389cfa75860ae866cb50cf060309f Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Sat, 23 Sep 2023 18:14:08 +0300 Subject: fix: dont check wait error (#83) Former-commit-id: e69cfb12f97a87f75ed4981dcb2c6c3e8564992d --- backend/parser/parser.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'backend') 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) { } } } - if err := cmd.Wait(); err != nil { - return 0, 0, err - } + cmd.Wait() return portalCount, cmTicks, nil } -- cgit v1.2.3