This is an automated email from the ASF dual-hosted git repository.
wave pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/openoffice-org.git
The following commit(s) were added to refs/heads/main by this push:
new 117e8ee fix migration script
117e8ee is described below
commit 117e8ee89913204114e8e4c63a458eccaf232b12
Author: Dave Fisher <[email protected]>
AuthorDate: Sun Nov 1 11:50:10 2020 -0800
fix migration script
---
tools/migration2git.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/migration2git.sh b/tools/migration2git.sh
index 1c04c90..8906a9d 100755
--- a/tools/migration2git.sh
+++ b/tools/migration2git.sh
@@ -36,7 +36,7 @@ find ${1} -type d ! -empty -exec mkdir -p
${GITPATH}/assets/{} \; -exec mkdir -p
echo
# 2 - Large Assets
echo 'copy assets larger than 3M as separate commits'
-find ${1} -type f -size +3M -exec cp {} ${GITPATH}/assets/{} \; -exec
${GITPATH}/tools/push2git.sh assets {} 'large asset'\;
+find ${1} -type f -size +3M -exec cp {} ${GITPATH}/assets/{} \; -exec
${GITPATH}/tools/push2git.sh assets {} 'large asset' \;
echo
# 3 - Assets
echo 'copy assets not (html and mdtext) to assets tree'
@@ -52,11 +52,11 @@ ${GITPATH}/tools/push2git.sh content ${1} 'html content'
echo
# 5 - Brand
echo 'Convert brand'
-find ${1} -name "brand.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh
brand {} \; -exec ${GITPATH}/tools/push2git.sh content {} 'brand'\;
+find ${1} -name "brand.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh
brand {} \; -exec ${GITPATH}/tools/push2git.sh content {} 'brand' \;
echo
# 6 - Navigators
echo 'Convert navigators'
-find ${1} -name "*nav.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh
navigator {} \; -exec ${GITPATH}/tools/push2git.sh content {} 'navigator'\;
+find ${1} -name "*nav.mdtext" -type f -exec ${GITPATH}/tools/convert2md.sh
navigator {} \; -exec ${GITPATH}/tools/push2git.sh content {} 'navigator' \;
echo
# 7 - Markdown
echo 'Convert markdown pages'