From 15c4774f17f67eb69a0162390b77201e7817fe94 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 24 Dec 2020 20:24:05 -0300 Subject: Use /bin/sh over Bash --- scripts/assert-shellcheck.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'scripts/assert-shellcheck.sh') diff --git a/scripts/assert-shellcheck.sh b/scripts/assert-shellcheck.sh index e24c29c..d07815b 100755 --- a/scripts/assert-shellcheck.sh +++ b/scripts/assert-shellcheck.sh @@ -1,6 +1,5 @@ -#!/usr/bin/env bash -set -Eeuo pipefail -cd "$(dirname "${BASH_SOURCE[0]}")" -cd ../ +#!/bin/sh -eux -git ls-files | grep '\.sh$' | xargs shellcheck +git ls-files -z | \ + xargs -0 awk 'FNR==1 && /^#!\/bin\/sh/ { print FILENAME }' | \ + xargs shellcheck -- cgit v1.2.3