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:
parent
d1a6f9d04a
commit
61727e0e57
1 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue