From b5ec1271d5ae3ff1daff5c7453320d2a4cfe9310 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 23 May 2023 14:16:43 +0300 Subject: [PATCH] .gitignore: do not ignore compiler testdata cli's testdata folder stores contracts examples and expected compilation output, thus doesn't need to be ignored. *.out files are the bindings outputs only, do not ignore them as far. Signed-off-by: Anna Shaleva --- .gitignore | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fbc04a091..3262aa4e4 100644 --- a/.gitignore +++ b/.gitignore @@ -7,9 +7,6 @@ # Test binary, build with `go test -c` *.test -# Output of the go coverage tool, specifically when used with LiteIDE -*.out - # Added by CoZ developers vendor/ bin/ @@ -54,6 +51,7 @@ testdata/ !pkg/services/notary/testdata !pkg/services/oracle/testdata !pkg/smartcontract/testdata +!cli/smartcontract/testdata pkg/vm/testdata/fuzz !pkg/vm/testdata !pkg/wallet/testdata