mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-25 05:38:18 +00:00
7a18a11e48
This saves me some time updating the docs, and is more important now that we use that since macro in rust crate source too.
9 lines
211 B
Bash
Executable File
9 lines
211 B
Bash
Executable File
#!/bin/bash
|
|
tag=$1
|
|
if [[ -z "$tag" ]] ; then
|
|
echo "Usage: ./assets/find-since-dev.sh 2026.03.04-bb93ecb1"
|
|
exit 1
|
|
else
|
|
perl -pi -w -e "s/since\('dev'/since('$tag'/g;" $(rg -l "since\('dev'" docs crates)
|
|
fi
|