mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-10 19:28:41 +00:00
23 lines
315 B
Bash
Executable File
23 lines
315 B
Bash
Executable File
#!/bin/bash
|
|
|
|
hasPhpLogging() {
|
|
RESULT=$(grep "var_dump(" "$1")
|
|
if [ ! -z $RESULT ]; then
|
|
echo 1
|
|
return 1
|
|
fi
|
|
|
|
echo 0
|
|
return 0
|
|
}
|
|
|
|
hasJsLogging() {
|
|
RESULT=$(grep "console.log(" "$1")
|
|
if [ ! -z $RESULT ]; then
|
|
echo 1
|
|
return 1
|
|
fi
|
|
|
|
echo 0
|
|
return 0
|
|
} |