Skip to content

Commit

Permalink
ignore mv errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Boyer committed Nov 26, 2023
1 parent 11d4c5c commit c4a8a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grav/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN crontab \
RUN cd /var/www/html/ && \
wget $GRAV_SKELETON_URL -O skeleton.zip && \
unzip skeleton.zip && \
mv $GRAV_SKELETON_FOLDER/* . && mv $GRAV_SKELETON_FOLDER/.* . && \
mv $GRAV_SKELETON_FOLDER/* . && mv $GRAV_SKELETON_FOLDER/.* . 2>/dev/null; true && \
bin/gpm install git-sync && \
git config --global --add safe.directory /var/www/html/user

Expand Down

0 comments on commit c4a8a6e

Please sign in to comment.