mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 11:12:23 +08:00
fb25985b91
This is a bit weird with the Rakefiles but makes it consistent. Found with rpmlint.
11 lines
186 B
Bash
Executable File
11 lines
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 |