Subversion Repositories SvarDOS

Rev

Rev 941 | Rev 951 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 941 Rev 946
Line 299... Line 299...
299
    continue;
299
    continue;
300
  }
300
  }
301
 
301
 
302
  // skip (and warn about) non-svp
302
  // skip (and warn about) non-svp
303
  if (!preg_match('/\.svp$/', $fname)) {
303
  if (!preg_match('/\.svp$/', $fname)) {
304
    $okfiles = array('.', '..', '_cats.json', '_index.json', 'core');
304
    $okfiles = array('.', '..', '_cats.json', '_index.json', '_buildidx.log', 'core');
305
    if (array_search($fname, $okfiles) !== false) continue;
305
    if (array_search($fname, $okfiles) !== false) continue;
306
    echo "WARNING: wild file '{$fname} (this is either an useless file that should be removed, or a misnamed package or source archive)'\n";
306
    echo "WARNING: wild file '{$fname} (this is either an useless file that should be removed, or a misnamed package or source archive)'\n";
307
    continue;
307
    continue;
308
  }
308
  }
309
 
309