Update run-tests to make use of /usr/bin/env (#1548)

* Update run-tests to make use of /usr/bin/env

* Update run-vint

* Update run-vader-tests

* Update custom-linting-rules

* Update custom-checks

* Update check-toc

* Update check-supported-tools-tables
This commit is contained in:
Bjorn Neergaard 2018-05-01 06:18:03 -06:00 committed by w0rp
parent 3331f6c8f4
commit ae85695543
7 changed files with 28 additions and 7 deletions

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
# Author: w0rp <devw0rp@gmail.com>
#

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
# This script compares the table of supported tools in both the README file
# and the doc/ale.txt file, so we can complain if they don't match up.

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
# This script checks that the table of contents for the supported tools is
# sorted, and that the table matches the files.

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
exit_code=0
image=w0rp/ale

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
# This Bash script implements custom sanity checks for scripts beyond what
# Vint covers, which are easy to check with regex.

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
image=w0rp/ale
docker_flags=(--rm -v "$PWD:/testplugin" -v "$PWD/test:/home" -w /testplugin "$image")

View File

@ -1,4 +1,7 @@
#!/bin/bash -eu
#!/usr/bin/env bash
set -e
set -u
exit_code=0
image=w0rp/ale