Skip to content
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

Use unique names for bulk update commands #39969

Closed
wants to merge 1 commit into from

Commits on Oct 15, 2022

  1. Use unique names for bulk update commands

    A regression introduced in 4c43245 is causing the 'xbps-src update-sys'
    command to skip the final step of installing the updated packages.
    
    This happens because the `cmd` variable name clashes with a loop
    variable used in common/environment/setup/install.sh script (line 16).
    Thus the `"$cmd" == installed` comparison
    (common/xbps-src/shutils/bulk.sh line 122) fails and the installation
    step is skipped.
    
    Using unique variable names in `bulk.sh` avoids this problem.
    heindsight committed Oct 15, 2022
    Configuration menu
    Copy the full SHA
    234ab1e View commit details
    Browse the repository at this point in the history