tmux-plugins.tmux-yank/citest
Christian Höltje c6a73eba6b run shfmt on scripts
shfmt -f . | xargs -E'\n' shfmt -w -i 4 -s
2018-08-22 10:48:18 -04:00

31 lines
451 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
cd "$(dirname "$0")"
bash_scripts=(
yank.tmux
scripts/*.sh
)
set -x
docker run \
--rm \
--volume="${PWD}:/mnt:ro" \
--workdir="/mnt" \
bash:latest \
bash -Dn "${bash_scripts[@]}"
docker run \
--rm \
--volume="${PWD}:/mnt:ro" \
--workdir="/mnt" \
koalaman/shellcheck:stable \
--shell=bash \
--external-sources \
--color=always \
"${bash_scripts[@]}"
# EOF