discourse/config/cloud/cloud66/scripts/migrate.sh
Marcus Rückert fb25985b91 Mark all files with a shebang line as executable
This is a bit weird with the Rakefiles but makes
it consistent. Found with rpmlint.
2015-05-12 13:21:32 +02:00

11 lines
No EOL
186 B
Bash
Executable file

#!/bin/bash
FILE=/tmp/migrate_done
if [ -f $FILE ]
then
echo "File $FILE exists..."
else
cd $RAILS_STACK_PATH
bundle exec rake db:migrate db:seed_fu
touch /tmp/migrate_done
fi