#!/bin/bash

# Update HELP.md file
echo -e "\`\`\`txt" > HELP.md
go run . -? >> HELP.md
echo -e "\`\`\`" >> HELP.md
exec git add HELP.md

exit 0
