Test remove commented nvim from Dockerfile

This commit is contained in:
Tinmarino
2020-05-20 14:41:07 -04:00
parent 972594829e
commit e83173c7c8
2 changed files with 4 additions and 1 deletions

@ -223,16 +223,20 @@ o_error=0
case $type in
"vader" )
runVader
echo "Vader: returned $?"
o_error=$(( $? | $o_error ))
;;
"vint" )
runVint
echo "Vint: returned $?"
o_error=$(( $? | $o_error ))
;;
"all" )
runVint
echo "Vint: returned $?"
o_error=$(( $? | $o_error ))
runVader
echo "Vader: returned $?"
o_error=$(( $? | $o_error ))
;;
* )