From 4948e30e180914f4b48211d16baee098c214949e Mon Sep 17 00:00:00 2001 From: qiaofeng1227 <76487013@qq.com> Date: Wed, 15 Nov 2023 10:21:16 +0800 Subject: [PATCH] Update install_plugins.sh --- install/install_plugins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install_plugins.sh b/install/install_plugins.sh index d9c4d08f..e60cad77 100644 --- a/install/install_plugins.sh +++ b/install/install_plugins.sh @@ -74,7 +74,7 @@ for key in $(jq -r '.plugins | keys[]' $versions_local_file); do echo "Download from $file_url" wget -q $file_url -O $file_name unzip -oq $file_name -d $plugin_path - rm $file_name + rm -rf $file_name done find /usr/share/cockpit -type f -name "*.py3" -exec chmod +x {} \;