Automatically update macOS build version at build time.

This commit is contained in:
Mark Kim 2022-09-10 09:16:10 -04:00
parent 6e21c4fab1
commit dd3009408f
8 changed files with 33 additions and 14 deletions

13
macos/template.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
#
# Process a document containing shell escape sequences.
#
# Usage: template.sh document.shdoc
#
bash <<<"cat <<__SHDOC_TEMPLATE__$$
$(cat "$@")
__SHDOC_TEMPLATE__$$"
# vim:ft=bash