Skip to content

Commit

Permalink
re-test previous build
Browse files Browse the repository at this point in the history
  • Loading branch information
tuehoang committed Jan 22, 2024
1 parent 7a5baa6 commit 95619bf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion batch/banaldocstore.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function __construct(Conf $conf, $arg) {
$this->count = $arg["count"] ?? 10;

if (!($dp = $this->conf->docstore())) {
throw new ErrorException("Program has no document store");
throw new ErrorException("Conference has no document store");
}
$matcher = new DocumentHashMatcher($arg["match"] ?? null);
$matcher->set_extension(".pdf");
Expand Down
2 changes: 1 addition & 1 deletion batch/s3test.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ static function make_args($argv) {

$conf = initialize_conf($arg["config"] ?? null, $arg["name"] ?? null);
if (!$conf->s3_client()) {
throw new ErrorException("S3 is not configured for this program");
throw new ErrorException("S3 is not configured for this conference");
}
return new S3Test_Batch($conf, $arg);
}
Expand Down
2 changes: 1 addition & 1 deletion batch/s3verifyall.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static function make_args($argv) {

$conf = initialize_conf($arg["config"] ?? null, $arg["name"] ?? null);
if (!$conf->s3_client()) {
throw new ErrorException("S3 is not configured for this program");
throw new ErrorException("S3 is not configured for this conference");
}
return new S3VerifyAll_Batch($conf, $arg);
}
Expand Down
2 changes: 1 addition & 1 deletion batch/savepapers.php
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ static function run_args($argv) {
"any-content-file Allow any `content_file` in documents",
"ignore-pid Ignore `pid` JSON elements",
"match-title Match papers by title if no `pid`",
"add-topics Add all referenced topics to program",
"add-topics Add all referenced topics to conference",
"skip-document-verify Do not verify document hashes",
"skip-document-content Avoid storing document content",
"json5,5 Allow JSON5 extensions",
Expand Down

0 comments on commit 95619bf

Please sign in to comment.