PHP Classes

File: psalm.sh

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   psalm.sh   Download  
File: psalm.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change:
Date: 6 years ago
Size: 556 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash echo "Checking the engine..." echo -e "Using \e[32mpsalm.xml\e[39m:" status=0 vendor/bin/psalm status=$(($status + $?)) echo "Checking each Cabin:" for dir in src/Cabin/* do if [[ -d "${dir}" ]]; then if [[ -f "${dir}/psalm.xml" ]]; then echo -e "Using \e[32m${dir}/psalm.xml\e[39m:" vendor/bin/psalm --config="${dir}/psalm.xml" status=$(($status + $?)) else echo -e "Cannot test Cabin; \e[31m${dir}/psalm.xml\e[39m not found." fi fi done exit $status