fix(rpm-ostree): Installation & removal not performing when classic & local packages are in recipe
This commit is contained in:
parent
4803093f17
commit
0c6cb0479a
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ if [[ ${#INSTALL_PKGS[@]} -gt 0 && ${#REMOVE_PKGS[@]} -gt 0 ]]; then
|
|||
elif ${CLASSIC_INSTALL} && ${HTTPS_INSTALL} && ! ${LOCAL_INSTALL}; then
|
||||
rpm-ostree override remove "${REMOVE_PKGS[@]}" $(printf -- "--install=%s " "${CLASSIC_PKGS[@]}")
|
||||
rpm-ostree install "${HTTPS_PKGS[@]}"
|
||||
elif ${CLASSIC_INSTALL} && ! ${HTTPS_INSTALL} && ! ${LOCAL_INSTALL}; then
|
||||
elif ${CLASSIC_INSTALL} && ! ${HTTPS_INSTALL} && ${LOCAL_INSTALL}; then
|
||||
rpm-ostree override remove "${REMOVE_PKGS[@]}" $(printf -- "--install=%s " "${CLASSIC_PKGS[@]}")
|
||||
rpm-ostree install "${LOCAL_PKGS[@]}"
|
||||
elif ${CLASSIC_INSTALL} && ${HTTPS_INSTALL} && ${LOCAL_INSTALL}; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue