Skip to content

Commit 28f672d

Browse files
authored
Fix links in PROJECTS.md to point to correct tree structure
1 parent 255f2c5 commit 28f672d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/generate-project-list.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
4242
for project in "${projects[@]}"; do
4343
project_name=${project%/}
44-
safe_project_name=${project_name// /-}
45-
echo "* [$project_name](./$safe_project_name)" >> PROJECTS.md
44+
safe_project_name=${project_name// /%20}
45+
echo "* [$project_name](/tree/main/$safe_project_name)" >> PROJECTS.md
4646
done
4747
4848
for file in "${exclude_files[@]}"; do

0 commit comments

Comments
 (0)