Fix convert script test for already existing db file

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@381 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Pasi Kallinen 2007-12-28 23:45:15 +00:00
parent 60be87ff9a
commit 4145814352
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
DBFILE="dgamelaunch.db"
if [-e "$DBFILE"]; then
if [ -e "$DBFILE" ]; then
echo "$DBFILE already exists.";
exit;
fi