mirror of
https://github.com/bobbimanners/Applecorn.git
synced 2024-12-26 01:29:55 +00:00
16 lines
285 B
Bash
Executable File
16 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Pre-commit hook for Applecorn
|
|
|
|
f="auxmem.vers.s"
|
|
V=`git describe`
|
|
echo '* Auto-generated by .git/hooks/pre-commit' > $f
|
|
echo "HELLO ASC 'Applecorn $V'" >> $f
|
|
echo " DB \$00" >> $f
|
|
|
|
if ! ./m32build; then
|
|
exit 1
|
|
fi
|
|
|
|
|