Skip to content

Commit 7c2f630

Browse files
committed
Fix bash in footer
1 parent 1f8962a commit 7c2f630

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

etc/kayobe/kolla.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ kolla_build_blocks:
354354
RUN \
355355
if [ -f /etc/yum.repos.d.backup/repos.tar.gz ]; then \
356356
tar -xzf /etc/yum.repos.d.backup/repos.tar.gz -C /etc/yum.repos.d && \
357-
rm -rf /etc/yum.repos.d.backup/ \
357+
rm -rf /etc/yum.repos.d.backup/; \
358358
fi && \
359359
if grep -r '{{ stackhpc_repo_mirror_url }}' /etc/yum.repos.d; then \
360360
echo "Found repository mirror in Yum repositories"; \
@@ -363,7 +363,7 @@ kolla_build_blocks:
363363
{% else %}
364364
RUN \
365365
if [ -f /etc/apt/sources.list.backup ]; then \
366-
mv /etc/apt/sources.list.backup /etc/apt/sources.list \
366+
mv /etc/apt/sources.list.backup /etc/apt/sources.list; \
367367
fi && \
368368
if grep -r '{{ stackhpc_repo_mirror_url }}' /etc/apt/sources.list; then \
369369
echo "Found repository mirror in APT repositories"; \

0 commit comments

Comments
 (0)