mirror of
https://github.com/Zerodya/dockeraise.git
synced 2026-06-19 02:00:05 +07:00
Fix script hanging if incompatible package is found
This commit is contained in:
+1
-1
@@ -32,7 +32,7 @@ fi
|
||||
|
||||
# Remove old and incompatible packages
|
||||
echo -e "${info} Removing old and incompatible packages..."
|
||||
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do apt-get remove $pkg >/dev/null; done
|
||||
for pkg in docker.io docker-doc docker-compose podman-docker containerd runc; do apt-get remove -y $pkg >/dev/null; done
|
||||
|
||||
# Install dependencies
|
||||
echo -e "${info} Updating repositories..."
|
||||
|
||||
Reference in New Issue
Block a user