From 92f11b76609645acaa10532080e1c5e4d0af5327 Mon Sep 17 00:00:00 2001
From: tteckster <tteckster@gmail.com>
Date: Sun, 29 Jan 2023 10:04:48 -0500
Subject: [PATCH] Update clean-lxcs.sh

fix curl path
---
 misc/clean-lxcs.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/misc/clean-lxcs.sh b/misc/clean-lxcs.sh
index f94141e70..4bda3c1a5 100644
--- a/misc/clean-lxcs.sh
+++ b/misc/clean-lxcs.sh
@@ -35,7 +35,7 @@ function clean_container() {
   header_info
   name=`pct exec $container hostname`
   echo -e "${BL}[Info]${GN} Cleaning ${name} ${CL} \n"
-  pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/tteck/Proxmox/raw/dev/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update"
+  pct exec $container -- bash -c "apt-get -y --purge autoremove && apt-get -y autoclean && bash <(curl -fsSL https://github.com/tteck/Proxmox/raw/main/misc/clean.sh) && rm -rf /var/lib/apt/lists/* && apt-get update"
 }
 read -p "Skip stopped containers? [y/N]" -n 1 -r
 echo