diff options
author | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-07-05 14:02:37 +0200 |
---|---|---|
committer | Alexandre Garand <alexandre.garand@fretlink.com> | 2019-07-05 14:02:37 +0200 |
commit | 065bf5d75bfd81d439ea42434463f796128d08f1 (patch) | |
tree | 975abfb432c663ba1faedb5b335b216fd0856f1a /GNUmakefile | |
parent | 8806bd74ef1d8ca63af0b764e46990cbee8ce546 (diff) | |
download | terraform-provider-mailgun-065bf5d75bfd81d439ea42434463f796128d08f1.tar.gz terraform-provider-mailgun-065bf5d75bfd81d439ea42434463f796128d08f1.tar.zst terraform-provider-mailgun-065bf5d75bfd81d439ea42434463f796128d08f1.zip |
add shellcheck to the makeffile and .travis.yml and fix the scripts to have no error with it
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index f5f0c29..7750632 100644 --- a/GNUmakefile +++ b/GNUmakefile | |||
@@ -25,6 +25,9 @@ vet: | |||
25 | exit 1; \ | 25 | exit 1; \ |
26 | fi | 26 | fi |
27 | 27 | ||
28 | shellcheck: | ||
29 | shellcheck scripts/* | ||
30 | |||
28 | fmt: | 31 | fmt: |
29 | gofmt -w $(GOFMT_FILES) | 32 | gofmt -w $(GOFMT_FILES) |
30 | 33 | ||