feat(基础功能增强): 自动更新服务时不需要输入Y进行确认

This commit is contained in:
otto 2023-08-22 15:06:16 +08:00
parent 72c78cca92
commit a0c07f0ad9
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ rm(){
if [ -z "$server_name" ]; then
docker-compose rm
else
docker-compose rm "$server_name"
docker-compose rm -f "$server_name"
fi
}