mirror of
https://github.com/osixia/container-openldap.git
synced 2026-09-25 07:49:34 -05:00
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
rm -rf $testDir
|
|
./test/tools/delete-container.sh
|
|
./test/tools/delete-image.sh > /dev/null 2>&1
|
|
|
|
echo "------- End -------"
|
|
echo $error " failed " $ok " succeeded"
|
|
|
|
if [ "$error" -eq 0 ]; then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|