mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 07:16:33 -04:00
5 lines
205 B
Bash
Executable file
5 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Replace issue numbers in brackets eg (#1337) with a link to the issue on the repository
|
|
sed -i.bak 's; (#\([0-9]*\)); ([#\1](https://github.com/tridactyl/tridactyl/issues/\1));g' CHANGELOG.md
|