098638f458
- address inadequate handling of ~/.m2 build directory [1] - bring in codehaus (bug in software, being addressed upstream) - adjust project URLs PR: 178020 [1] Reported by: John Marino <draco@marino.st>
22 lines
554 B
Bash
22 lines
554 B
Bash
#!/bin/sh
|
|
|
|
# $FreeBSD$
|
|
|
|
BATCH=${BATCH:=no}
|
|
|
|
if [ "$2" = "PRE-INSTALL" ]; then
|
|
cat << _EOF
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
To upgrade, it is recommended to refer to the Installation Guide found here:
|
|
http://community.jaspersoft.com/documentation
|
|
|
|
============== W A R N I N G I M P O R T A N T N O T E =================
|
|
|
|
_EOF
|
|
if [ -z "${PACKAGE_BUILDING}" -a "${BATCH}" = "no" ]; then
|
|
read -p "Hit ^c now to stop, any key to continue: " -t 20 a || true
|
|
echo
|
|
echo
|
|
fi
|
|
fi
|