Skip to content

Commit 426b385

Browse files
committed
Fix clean cmd to remove only md-files
1 parent 2b63425 commit 426b385

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ The format is inspired by [Keep a Changelog](https://keepachangelog.com/en/1.1.0
2525

2626
- Fix yamllint config-location in pre-commit configuration of the project. #60
2727
- Generate markdown schema documentation as part of docs build in gh-actions.
28+
- Fix clean command to remove only md-files from `docs/elements`
2829

2930
### Changed
3031

template/justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ update: _update-template _update-linkml
6666
[group('project management')]
6767
clean: _clean_project
6868
rm -rf tmp
69-
rm -rf {{docdir}}/*
69+
rm -rf {{docdir}}/*.md
7070

7171
# (Re-)Generate project and documentation locally
7272
[group('model development')]

0 commit comments

Comments
 (0)