Compare commits

...

3 Commits

Author SHA1 Message Date
6b162106e4 chore(changelog): update unreleased changelog 2025-07-02 18:55:44 +00:00
e9f8be5b2b style(bash): remove unnecessary space stripping in help output
All checks were successful
Auto Changelog & (Release) / release (push) Successful in 6s
- Simplifies the sed command by removing redundant space trimming.
2025-07-02 20:55:37 +02:00
6c8513fa58 chore(changelog): update unreleased changelog 2025-07-02 18:55:15 +00:00
2 changed files with 9 additions and 1 deletions

View File

@@ -9,14 +9,22 @@ All notable changes to this project will be documented in this file.
- *(vscode)* Add custom activity bar color settings - *(vscode)* Add custom activity bar color settings
- *(script)* Add installer for git-cliff binary - *(script)* Add installer for git-cliff binary
- *(script)* Enhance git-cliff installer with extended options - *(script)* Enhance git-cliff installer with extended options
- *(bash)* Add self-contained help extraction script
### 📚 Documentation ### 📚 Documentation
- *(readme)* Update title and add license link - *(readme)* Update title and add license link
### 🎨 Styling
- *(bash)* Remove unnecessary space stripping in help output
### ⚙️ Miscellaneous Tasks ### ⚙️ Miscellaneous Tasks
- *(workflows)* Add release workflow and merge message template - *(workflows)* Add release workflow and merge message template
- *(changelog)* Update unreleased changelog - *(changelog)* Update unreleased changelog
- *(changelog)* Update unreleased changelog
- *(structure)* Reorganize install script location
- *(changelog)* Update unreleased changelog
<!-- generated by git-cliff --> <!-- generated by git-cliff -->

View File

@@ -13,7 +13,7 @@ show_help() {
sed -n '/^#=== HELP START ===/,/^#=== HELP END ===/ { sed -n '/^#=== HELP START ===/,/^#=== HELP END ===/ {
/^#=== HELP START ===/d /^#=== HELP START ===/d
/^#=== HELP END ===/d /^#=== HELP END ===/d
s/^# *// s/^#//
p p
}' "$0" }' "$0"
} }