2016-08-08 17:07:42 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-12-11 20:57:31 +00:00
|
|
|
#SC1090 = not following non constants source
|
|
|
|
#SC1091 = not following source
|
|
|
|
#SC2086 = quoting errors (shellcheck is way too picky about quoting)
|
2016-08-08 17:07:42 +00:00
|
|
|
#SC2120 = only for debug version
|
2018-10-02 16:22:36 +00:00
|
|
|
#SC2034 = unused variabled (can be ignored in ofunctions.sh)
|
|
|
|
#SC2068 = bad array usage (can be ignored in ofunctions.sh)
|
2016-08-08 17:07:42 +00:00
|
|
|
|
2018-10-02 16:22:36 +00:00
|
|
|
shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $@
|