#/bin/sh

# These are the parameters we expect
launcherversion=$1
launcherlocation=$2

# We should now check if the launcher version is old.
# If it's old, we can upgrade it.
if test $launcherversion -le 049 ; then
  echo "# Updating the old launcher here" >> "$launcherlocation"
  exit 1   # Cause the launcher to abort by exiting with code 1
fi

# Continue as normal
