mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-17 18:45:08 +00:00
24 lines
347 B
Bash
Executable File
24 lines
347 B
Bash
Executable File
bash "1_build.sh"
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Error: Build failed"
|
|
exit 1
|
|
fi
|
|
|
|
bash "2_start.sh"
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Error: Start failed"
|
|
exit 1
|
|
fi
|
|
|
|
bash "3_test.sh"
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Error: Test failed"
|
|
exit 1
|
|
fi
|
|
|
|
bash "4_stop.sh"
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Error: Stop failed"
|
|
exit 1
|
|
fi
|