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:
parent
3331f6c8f4
commit
ae85695543
@ -1,4 +1,7 @@
|
||||
#!/bin/bash -eu
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
# Author: w0rp <devw0rp@gmail.com>
|
||||
#
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -1,4 +1,7 @@
|
||||
#!/bin/bash -eu
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
exit_code=0
|
||||
image=w0rp/ale
|
||||
|
@ -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.
|
||||
|
@ -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")
|
||||
|
@ -1,4 +1,7 @@
|
||||
#!/bin/bash -eu
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
set -u
|
||||
|
||||
exit_code=0
|
||||
image=w0rp/ale
|
||||
|
Loading…
Reference in New Issue
Block a user