diff --git a/CHANGELOG.md b/CHANGELOG.md index 67a376874..1fef70d4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/di/bin/init-proxy.sh b/src/di/bin/init-proxy.sh index b469c8fad..e6c0e97ac 100755 --- a/src/di/bin/init-proxy.sh +++ b/src/di/bin/init-proxy.sh @@ -9,7 +9,7 @@ if [ ! -f "composer.lock" ]; then exit fi -rm -rf runtime +rm -rf runtime/container echo "Runtime cleared"