Changed init-proxy.sh command to only delete the runtime/container directory. (#977)

This commit is contained in:
李铭昕 2019-11-19 14:20:36 +08:00 committed by GitHub
parent 65ad3a35c1
commit 5630b05ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,10 @@
- [#968](https://github.com/hyperf/hyperf/pull/968) Fixed aspect does not works when class and annotation exist at the same time.
- [#980](https://github.com/hyperf/hyperf/pull/980) Fixed `migrate`, `save` and `has` methods of Session do not work as expected.
# Changed
- [#977](https://github.com/hyperf/hyperf/pull/977) Changed `init-proxy.sh` command to only delete the `runtime/container` directory.
# v1.1.6 - 2019-11-14
## Added

View File

@ -9,7 +9,7 @@ if [ ! -f "composer.lock" ]; then
exit
fi
rm -rf runtime
rm -rf runtime/container
echo "Runtime cleared"