]> skyeroc.xyz Git - dgamelaunch/commitdiff
Fix convert script test for already existing db file
authorPasi Kallinen <paxed@alt.org>
Fri, 28 Dec 2007 23:45:15 +0000 (23:45 +0000)
committerPasi Kallinen <paxed@alt.org>
Fri, 28 Dec 2007 23:45:15 +0000 (23:45 +0000)
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@381 db0b04b0-f4d1-0310-9a6d-de3e77497b0e

convert_dgl-login.sh

index f524c058f11fc6ab64cc64e67213325e0944f07c..c8cfdd4988fe487f8e05b59910b75452253910aa 100644 (file)
@@ -6,7 +6,7 @@
 
 DBFILE="dgamelaunch.db"
 
-if [-e "$DBFILE"]; then
+if [ -e "$DBFILE" ]; then
     echo "$DBFILE already exists.";
     exit;
 fi