From 41458143520d88d00655f21538d0b50a6640ed37 Mon Sep 17 00:00:00 2001 From: Pasi Kallinen Date: Fri, 28 Dec 2007 23:45:15 +0000 Subject: [PATCH] Fix convert script test for already existing db file git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@381 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- convert_dgl-login.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert_dgl-login.sh b/convert_dgl-login.sh index f524c05..c8cfdd4 100644 --- a/convert_dgl-login.sh +++ b/convert_dgl-login.sh @@ -6,7 +6,7 @@ DBFILE="dgamelaunch.db" -if [-e "$DBFILE"]; then +if [ -e "$DBFILE" ]; then echo "$DBFILE already exists."; exit; fi -- 2.47.3