Skip to content

Commit 0439615

Browse files
committed
build: fix repo case
1 parent 32b31d7 commit 0439615

File tree

7 files changed

+5
-347
lines changed

7 files changed

+5
-347
lines changed

.github/workflows/on-markdown-update.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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"

Docs/README.egosoft

Lines changed: 0 additions & 171 deletions
This file was deleted.

Docs/README.nexus

Lines changed: 0 additions & 171 deletions
This file was deleted.
-19.9 KB
Binary file not shown.
-149 KB
Binary file not shown.

Docs/images/autotabs_menu_item.png

-152 KB
Binary file not shown.

Docs/images/autotabs_result.png

-105 KB
Binary file not shown.

0 commit comments

Comments
 (0)