Update 'make public' to not die on missing _images dir
This commit is contained in:
parent
01cc3fe96e
commit
4b7c3e28b8
@ -99,6 +99,6 @@ public: clean html
|
|||||||
(find . -type f | xargs sed -i -e 's/_sources/sources/g') && \
|
(find . -type f | xargs sed -i -e 's/_sources/sources/g') && \
|
||||||
mv _static static && \
|
mv _static static && \
|
||||||
(find . -type f | xargs sed -i -e 's/_static/static/g') && \
|
(find . -type f | xargs sed -i -e 's/_static/static/g') && \
|
||||||
mv _images images && \
|
if [ -d _images ]; then mv _images images; fi && \
|
||||||
(find . -type f | xargs sed -i -e 's/_images/images/g') && \
|
(find . -type f | xargs sed -i -e 's/_images/images/g') && \
|
||||||
git add *
|
git add *
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user