bashup-events: rm shellcheck from checkPhase

An advance in shellcheck started causing new failures here, which
inspired me to think a little more lucidly and realize it's a bad
idea to shellcheck something that isn't maintainer-developed. The
outcomes are all annoying timewasters. :[
This commit is contained in:
Travis A. Everett 2021-12-05 21:44:55 -06:00 committed by zowoq
parent d1a6f9d04a
commit 61727e0e57

View file

@ -3,7 +3,6 @@
lib
, resholvePackage
, bash
, shellcheck
, doCheck ? true
, doInstallCheck ? true
# variant-specific
@ -50,12 +49,10 @@ resholvePackage rec {
'';
inherit doCheck;
checkInputs = [ shellcheck bash ];
checkInputs = [ bash ];
# check based on https://github.com/bashup/events/blob/master/.dkrc
checkPhase = ''
runHook preCheck
SHELLCHECK_OPTS='-e SC2016,SC2145' ${shellcheck}/bin/shellcheck ./bashup.events
${bash}/bin/bash -n ./bashup.events
${bash}/bin/bash ./bashup.events
runHook postCheck