- priority: 5 --> 3
Actually a funny one :). DIY summup appears after the COPY are performed. If you have DYI instructions preceding the COPY instructions, the user will do them after the copies have been done. ie:
#
#---[ DIY INSTRUCTIONS ]-------
#
RENAME index.php INTO front.php
#
#---[ COPY ]-------
#
COPY root/index.php TO index.php
will result in loosing completly index.php if the user follow the proposed steps sequence.
However, you can have:
#
#---[ DIY INSTRUCTIONS ]-------
#
RENAME index.php INTO front.php
#
#---[ COPY ]-------
#
COPY root/index.php TO index.php
COPY root/install/*.* TO install/*.*
#
(../..)
#
#---[ DIY INSTRUCTIONS ]-----
#
RUN index.php?install=1
DELETE install/
So a pre-COPY DIY step, the COPYs step, then a second DIY step