From c854f3c02a9c4b0190786461bb5efc1e436c0e1f Mon Sep 17 00:00:00 2001 From: Botspot <54716352+Botspot@users.noreply.github.com> Date: Tue, 19 Dec 2023 23:04:02 -0600 Subject: [PATCH] rm zoom libs zip This has been leaving zoom_x64_libs.zip in ~/ --- apps/Zoom/install-64 | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/Zoom/install-64 b/apps/Zoom/install-64 index cce3241ff0..f3a2c94cbe 100755 --- a/apps/Zoom/install-64 +++ b/apps/Zoom/install-64 @@ -27,6 +27,7 @@ if true;then echo "Getting x86_64 libs..." wget https://github.com/ryanfortner/rpi-zoom/raw/master/zoom_x64_libs.zip || error "Failed to download zoom x64 libraries!" unzip zoom_x64_libs.zip || error "Failed to extract zoom libraries." + rm zoom_x64_libs.zip || error "Failed to remove zoom_x64_libs.zip" mkdir ~/zoom/x64_libs mv zoom_x64_libs/* ~/zoom/x64_libs || error "Failed to move zoom x64 libraries to zoom folder." rm -r $HOME/zoom_x64_libs || error "Failed to remove library folder."