Skip to content

Commit 7c08ad0

Browse files
committed
Updating Makefile + Add gitignore
1 parent 5651753 commit 7c08ad0

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
*.dll
2+
*.exe
3+
.DS_Store
4+
example.tf
5+
terraform.tfplan
6+
terraform.tfstate
7+
bin/
8+
modules-dev/
9+
/pkg/
10+
website/.vagrant
11+
website/.bundle
12+
website/build
13+
website/node_modules
14+
.vagrant/
15+
*.backup
16+
./*.tfstate
17+
.terraform/
18+
*.log
19+
*.bak
20+
*~
21+
.*.swp
22+
.idea
23+
*.iml
24+
*.test
25+
*.iml
26+
27+
website/vendor
28+
29+
# Test exclusions
30+
!command/test-fixtures/**/*.tfstate
31+
!command/test-fixtures/**/.terraform/

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ default: build
77
build: fmtcheck
88
go install
99

10-
test: fmtcheck errcheck
10+
test: fmtcheck
1111
go test -i $(TEST) || exit 1
1212
echo $(TEST) | \
1313
xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4

0 commit comments

Comments
 (0)