All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.javadpkg.impl.preinst Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
#!/bin/sh
# --- Enable error detection. ---
set -e

# --- Set version of this package ---
THISVERSION="${deb.version}"

echo Pre-installation script version $THISVERSION
echo "   Parameters                  : $@"
echo "   Option                      : $1"
echo "   Currently installed version : $2"
echo "   Version of this package     : $THISVERSION"

case "$1" in
    install)
        echo "   No tasks."
        ;;
    upgrade)
        echo "   No tasks."
        ;;
    *)
        echo "   Option $1 not supported by this script."
        ;;
esac




© 2015 - 2024 Weber Informatics LLC | Privacy Policy