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-todos.sh | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'scripts/assert-todos.sh') diff --git a/scripts/assert-todos.sh b/scripts/assert-todos.sh index 14a1b71..df7a96d 100755 --- a/scripts/assert-todos.sh +++ b/scripts/assert-todos.sh @@ -1,11 +1,6 @@ -#!/usr/bin/env bash -set -Eeuo pipefail -cd "$(dirname "${BASH_SOURCE[0]}")" -cd ../ +#!/bin/sh -eux -# shellcheck disable=2046 -if grep -R FIXME $(git ls-files) | \ - grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|locale/)'; then +if git grep FIXME | grep -Ev '^(vendor/|.git/|scripts/assert-todos.sh|locale/)'; then echo "Found dangling FIXME markers on the project." echo "You should write them down properly on TODOs.org." exit 1 -- cgit v1.2.3