Skip to content

Commit

Permalink
containerized-rpmbuild: fix typo in installing packages string (#8704)
Browse files Browse the repository at this point in the history
Change #7982 introduced a typo in the variable name we use to print which extra packages containerized-rpmbuild will install. The correct packages are installed, but the string informing the user what's being installed doesn't print the extra packages.

This change fixes that.
  • Loading branch information
tobiasb-ms authored Apr 4, 2024
1 parent e6f03ca commit 66e57ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ RUN if [[ "${mode}" == "build" ]]; then echo "cd /usr/src/azl || { echo \"ERROR:
RUN if [[ "${mode}" == "test" ]]; then echo "cd /mnt || { echo \"ERROR: Could not change directory to /mnt \"; exit 1; }" >> /root/.bashrc; fi

# Install packages from bashrc so we can use the previously setup tdnf defaults.
RUN echo "echo installing packages vim git ${coextra_packages}" >> /root/.bashrc && \
RUN echo "echo installing packages vim git ${extra_packages}" >> /root/.bashrc && \
echo "tdnf install -qy vim git ${extra_packages}" >> /root/.bashrc

0 comments on commit 66e57ed

Please sign in to comment.