fess/dbflute_mysql/replace-schema.sh
2013-09-14 15:00:28 +09:00

14 lines
292 B
Bash

#!/bin/bash
cd `dirname $0`
. _project.sh
echo "/nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn"
echo "...Calling the ReplaceSchema task"
echo "nnnnnnnnnn/"
sh $DBFLUTE_HOME/etc/cmd/_df-replace-schema.sh $MY_PROPERTIES_PATH
taskReturnCode=$?
if [ $taskReturnCode -ne 0 ];then
exit $taskReturnCode;
fi