Skip to content

Commit 630f77a

Browse files
committed
Moved misplaced semi-colon
1 parent 1c60150 commit 630f77a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile.rocky8

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1704,8 +1704,8 @@ RUN if [ "${ENABLE_QUOTA}" = "True" ] \
17041704
&& cd ${MIG_ROOT}/mig/src/pylustrequota/lustre-release/lustre/utils \
17051705
&& make liblustreapi.la \
17061706
&& cd ${MIG_ROOT}/mig/src/pylustrequota \
1707-
&& python3 setup.py install; \
1708-
&& rm -rf ${MIG_ROOT}/mig/src/pylustrequota/lustre-release \
1707+
&& python3 setup.py install \
1708+
&& rm -rf ${MIG_ROOT}/mig/src/pylustrequota/lustre-release; \
17091709
fi; \
17101710
fi;
17111711
#------------------------- next stage -----------------------------#

Dockerfile.rocky9

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,8 +1591,8 @@ RUN if [ "${ENABLE_QUOTA}" = "True" ] \
15911591
&& cd ${MIG_ROOT}/mig/src/pylustrequota/lustre-release/lustre/utils \
15921592
&& make liblustreapi.la \
15931593
&& cd ${MIG_ROOT}/mig/src/pylustrequota \
1594-
&& python3 setup.py install; \
1595-
&& rm -rf ${MIG_ROOT}/mig/src/pylustrequota/lustre-release \
1594+
&& python3 setup.py install \
1595+
&& rm -rf ${MIG_ROOT}/mig/src/pylustrequota/lustre-release; \
15961596
fi; \
15971597
fi;
15981598
#------------------------- next stage -----------------------------#

0 commit comments

Comments
 (0)