-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dochat.sh always prints "Exited with code [0]" #200
Comments
Same error 00e0:fixme:ver:GetCurrentPackageId (04BCFEF0 00000000): stub |
the same error
|
After docker exits, this
echo
command runs:https://github.com/huan/docker-wechat/blob/ba83bb4/dochat.sh#L124
echo
will always exit with code 0. The following line always prints the exit code ofecho
not the exit code of the docker command:https://github.com/huan/docker-wechat/blob/ba83bb4/dochat.sh#L125
This script is
set -e
. Ifdocker
exists non-zero, the scripts exist immediately and this message is not printed at all.The text was updated successfully, but these errors were encountered: