-
Notifications
You must be signed in to change notification settings - Fork 256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with the full system update #420
Comments
I found a way how to fix this!!!!You have to manually install ueberzugpp and remove uberzug |
Im already test it the ueberzugpp problem, yes apparently the --noconfirm flag does not do anything if you need to replace a package, in this case uberzug for ueberzugpp.. Let me think a solution.. sorry for that. |
install_dependencies() {
} Maybe this will work ? |
Since ueberzug seems to me to be the only package that would need a replacement, perhaps instead of completely exiting the script, it would be easy to manage the package individually if it existed previously, I think this would help. I just finished testing locally and it works without errors. Put this right below the dependencies array list. # Handle ueberzug/ueberzugpp conflict
if is_installed "ueberzug"; then
echo -e "${BLD}${CYE}Removing conflicting ueberzug package...${CNC}"
sudo pacman -Rns --noconfirm ueberzug >> "$ERROR_LOG" 2>&1 || {
log_error "Failed to remove ueberzug"
echo -e "${BLD}${CRE}Error removing ueberzug! Check logs${CNC}"
}
fi |
When the script execute the full system update and install dependencies like bspwm, sometimes it can fail, but the script will continue
That broke my system, broke zsh, be careful about that issue, i will do à pull requests soon to fix it. Dont worry
The text was updated successfully, but these errors were encountered: