From f6feaadb121daf10af58454c0fd1b47c680ad4d8 Mon Sep 17 00:00:00 2001 From: Denis Cheremisov Date: Fri, 14 Aug 2020 20:48:20 +0300 Subject: [PATCH] fix: try again to get build back --- .travis.yml | 2 +- Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index d080cb0..bd10aea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ go: - 1.14.x install: - - go get -v -d -t github.com/sirkon/ldetool + - git clone https://github.com/sirkon/ldetool.git script: - make test diff --git a/Makefile b/Makefile index 104ab55..07ef516 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ test: PATH=${GOPATH}/bin:${PATH} - go install - go generate github.com/sirkon/ldetool/testing + cd ldetool && go install + cd ldetool && go generate ./testing which ldetool - go test -test.v github.com/sirkon/ldetool/testing + cd ldetool && go test -test.v ./testing grammar: antlr4 -no-visitor -listener -o internal/parser -Dlanguage=Go LDE.g4