mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
10 lines
190 B
Bash
10 lines
190 B
Bash
|
#!/bin/bash
|
||
|
FILE=/tmp/import_dev_done
|
||
|
|
||
|
if [ -f $FILE ]
|
||
|
then
|
||
|
echo "File $FILE exists..."
|
||
|
else
|
||
|
psql $POSTGRESQL_DATABASE < /tmp/images/development-image.sql
|
||
|
touch /tmp/import_dev_done
|
||
|
fi
|