Skip to content

Commit

Permalink
'comfy3d' omitting deletion error
Browse files Browse the repository at this point in the history
  • Loading branch information
YanWenKun committed Jul 26, 2024
1 parent 2a911e7 commit de696c3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions comfy3d-pt22/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ RUN --mount=type=cache,target=/root/.cache/pip \

################################################################################

RUN du -ah /root \
&& rm -rf /root/* /root/.*
RUN set +e \
&& du -ah /root \
&& rm -rf /root/* /root/.* \
&& set -e

COPY runner-scripts/. /runner-scripts/

Expand Down
6 changes: 4 additions & 2 deletions comfy3d-pt23/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@ https://raw.githubusercontent.com/MrForExample/Comfy3D_Pre_Builds/b27af1a28d9f19

################################################################################

RUN du -ah /root \
&& rm -rf /root/* /root/.*
RUN set +e \
&& du -ah /root \
&& rm -rf /root/* /root/.* \
&& set -e

COPY runner-scripts/. /runner-scripts/

Expand Down

0 comments on commit de696c3

Please sign in to comment.