You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -564,7 +564,12 @@ install_packages() { #Make some packages dependencies of the $app app. Package-n
564
564
fi
565
565
warning "Package download failed. (Attempt $i of 3)"
566
566
done
567
-
[ -f"$filename" ] || error "install_packages(): Downloaded package does not exist! ($filename)"
567
+
568
+
if [ !-f"$filename" ] && [ !-f /var/cache/pi-apps ];then
569
+
error "User error: Uh-oh, the /var/cache/pi-apps folder went missing while installing packages.\nThis usually happens if you try to install several apps at the same time in multiple terminals."
570
+
elif [ !-f"$filename" ];then
571
+
error "install_packages(): Downloaded package does not exist! ($filename)"
572
+
fi
568
573
569
574
#determine the package name, package version, and architecture from the file
570
575
local dpkg_deb_output="$(dpkg-deb -I "$filename")"
0 commit comments