1
1
mirror of https://github.com/primer/css.git synced 2024-11-23 11:27:26 +03:00

fix: make sure we migrate all the markdown

This commit is contained in:
Shawn Allen 2019-01-28 16:32:21 -08:00
parent 0621d9e2a7
commit e6bde01760

View File

@ -74,13 +74,13 @@ for dir in $modules; do
__ rm -rf $dest
__ mkdir -p $dest
__ git mv $dir/index.scss $dest
__ git mv $dir/index.scss $dir/README.md $dest
if [[ -e $dir/lib ]]; then
__ mv $dir/lib/* $dest
__ git mv $dir/lib/* $dest
fi
if [[ -e $dir/docs ]]; then
__ mv $dir/docs $dest
__ git mv $dir/docs $dest
fi
__ pushd $dest > /dev/null