]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 67950b - quick fixes. Patch by gerv.
authorgerv%gerv.net <>
Thu, 25 Jul 2002 06:32:41 +0000 (06:32 +0000)
committergerv%gerv.net <>
Thu, 25 Jul 2002 06:32:41 +0000 (06:32 +0000)
checksetup.pl

index 5b504dea9b1c4e5fe961005dcdc7fa802e8e906b..5a522643d532de485b24be344ce4e652e7836dfc 100755 (executable)
@@ -3025,17 +3025,17 @@ if (!GetFieldDef("bugs", "alias")) {
 # Move quips to the db.
 my $renamed_comments_file = 0;
 if (GetFieldDef("quips", "quipid")) {
-    if (-s 'data/comments' && open (COMMENTS, "<data/comments")) {
+    if (-e 'data/comments' && open (COMMENTS, "<data/comments")) {
         print "Populating quips table from data/comments...\n";
         while (<COMMENTS>) {
             chomp;
             $dbh->do("INSERT INTO quips (quip) VALUES ("
                       . $dbh->quote($_) . ")");
         }
-        print "The data/comments file (used to store quips) has been
-copied into the database, and the data/comments file
-moved to data/comments.bak - you can delete this file
-once you're satisfied the migration worked correctly.\n";
+        print "The data/comments file (used to store quips) has been        
+               copied into the database, and the data/comments file
+               moved to data/comments.bak - you can delete this file
+               once you're satisfied the migration worked correctly.\n\n";
         close COMMENTS;
         rename("data/comments", "data/comments.bak") or next;        
         $renamed_comments_file = 1;
@@ -3043,11 +3043,10 @@ once you're satisfied the migration worked correctly.\n";
 }
 
 # Warn if data/comments.bak exists, as it should be deleted.
-if (-s 'data/comments.bak' && !$renamed_comments_file) {
-    print "Please note the data/comments.bak file can be removed as it's
-no longer used.\n";
+if (-e 'data/comments.bak' && !$renamed_comments_file) {
+    print "The data/comments.bak file can be removed, as it's no longer
+           used.\n\n";
 }
-
         
 # If you had to change the --TABLE-- definition in any way, then add your
 # differential change code *** A B O V E *** this comment.