mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2025-02-14 02:41:46 +01:00
12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
OUTPUT=`check-manifest`
|
|
EXPECTED_OUTPUT="lists of files in version control and sdist match"
|
|
if [[ "$OUTPUT" != "$EXPECTED_OUTPUT" ]]; then
|
|
echo "Check-manifest didn't match."
|
|
echo "OUTPUT: $OUTPUT"
|
|
echo "EXPECTED_OUTPUT: $EXPECTED_OUTPUT"
|
|
exit 1 # Error
|
|
else
|
|
echo "Manifest verified."
|
|
exit 0
|
|
fi |