mirror of
https://github.com/danog/ext-uv.git
synced 2024-11-26 20:14:47 +01:00
13 lines
234 B
Bash
13 lines
234 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
VALIDATE_OUTPUT=`pear package-validate`
|
||
|
|
||
|
echo "VALIDATE_OUTPUT is $VALIDATE_OUTPUT"
|
||
|
|
||
|
if [[ "$VALIDATE_OUTPUT" == *"Error"* ]]; then
|
||
|
echo "Package appears to contain an error"
|
||
|
exit 255
|
||
|
fi
|
||
|
|
||
|
echo "Package appears valid"
|