logging m1.

This commit is contained in:
2022-02-23 23:35:27 -08:00
parent 88d0fc3642
commit d528613fef
6 changed files with 109 additions and 2 deletions

13
milestone Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -eux
MILESTONE_POST="content/pages/milestones/m${1}.md"
if [ ! -e "${MILESTONE_POST}" ]
then
echo "Milestone not found."
exit 1
fi
EDITOR="${EDITOR:-gvim}"
$EDITOR "${MILESTONE_POST}"