mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
17 lines
215 B
Bash
17 lines
215 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
if [ "$2" != "POST-INSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
boguscreatenewentry=%%PREFIX%%/share/templates/.keep_me
|
|
|
|
if [ -f $boguscreatenewentry ]; then
|
|
rm -f $boguscreatenewentry
|
|
fi
|
|
|
|
exit 0
|