#!/bin/sh
#

mathpass=$TARGET/Configuration/Licensing/mathpass

if [ ! -f $ITMPDIR/Password ]; then
   exit 0
fi

if [ -f $mathpass ]; then
   cat $mathpass $ITMPDIR/Password > $ITMPDIR/NewPassword
   cp $ITMPDIR/NewPassword $mathpass
else
   cp $ITMPDIR/Password $mathpass
fi
