File tree Expand file tree Collapse file tree 7 files changed +5
-347
lines changed
Expand file tree Collapse file tree 7 files changed +5
-347
lines changed Original file line number Diff line number Diff line change @@ -48,24 +48,24 @@ jobs:
4848 for file_changed in ${CHANGED_FILES}; do
4949 for conversion_type in egosoft nexus; do
5050 echo "Converting $file_changed to $conversion_type"
51- python3 markdown-to-bbcode-simple/markdown_to_bbcode.py -t $conversion_type -o "Docs " "$file_changed"
51+ python3 markdown-to-bbcode-simple/markdown_to_bbcode.py -t $conversion_type -o "docs " "$file_changed"
5252 if [[ $? -ne 0 ]]; then
5353 echo "Error converting $file_changed to $conversion_type" >&2
5454 else
5555 echo "Converted $file_changed to $conversion_type"
5656 file_converted="${file_changed%.md}.$conversion_type"
57- git add "Docs /$file_converted"
57+ git add "docs /$file_converted"
5858 if [[ $? -ne 0 ]]; then
59- echo "Error adding Docs /$file_converted to git" >&2
59+ echo "Error adding docs /$file_converted to git" >&2
6060 else
61- echo "Added Docs /$file_converted to git"
61+ echo "Added docs /$file_converted to git"
6262 fi
6363 fi
6464 done
6565 done
6666 for file_deleted in ${DELETED_FILES}; do
6767 for conversion_type in egosoft nexus; do
68- file_to_delete="Docs /${file_deleted%.md}.$conversion_type"
68+ file_to_delete="docs /${file_deleted%.md}.$conversion_type"
6969 if [[ -f "$file_to_delete" ]]; then
7070 echo "Deleting $file_to_delete"
7171 git rm "$file_to_delete"
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments