grpc/tools/dockerfile/interoptest/grpc_interop_php7
Jan Tattermusch cfbeb3edd7 Fix wrong error handling logic in php's build_interop.sh
If [[ "$DONE" != 1 ]] && echo "Failed to do composer install" && exit 1
is at the end of a shell script, even if DONE is 1, this will return with error
exit status. That's because [[ $DONE != 1 ]] has exitcode 1 and thus anything after && doesn't get executed
and the entire scripts exits the last exit code it seen (which is 1).
2020-04-23 16:18:22 +02:00
..
Dockerfile PHP: update docker image PHP 7 version 2019-10-28 23:44:17 -07:00
build_interop.sh Fix wrong error handling logic in php's build_interop.sh 2020-04-23 16:18:22 +02:00