Skip to content

Commit

Permalink
check return value
Browse files Browse the repository at this point in the history
  • Loading branch information
pschoffer committed Aug 11, 2022
1 parent 9663335 commit 7745a62
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion __tests__/e2e_test.bat
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ echo "== Creating dev-env"

call vip dev-env create --client-code image --title Test --multisite false --php 8.0 --wordpress 6.0 --mu-plugins image -e false -p false -x false

if %errorlevel% != 0 (
echo "== Failed to create dev-env"
exit 1
)

echo "== Starting dev-env"

call vip dev-env start
call vip dev-env start

if %errorlevel% != 0 (
echo "== Dev-env failed to start"
exit 1
)

0 comments on commit 7745a62

Please sign in to comment.