Skip to content

Commit

Permalink
Merge pull request #166 from clarin-eric/devel
Browse files Browse the repository at this point in the history
Devel->main
  • Loading branch information
matyaskopp authored Feb 23, 2022
2 parents 22caea0 + ec14acc commit 4c61c8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Scripts/pack-parlamint.pl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ sub usage {
`rm -fr $outDir/$outTxt`;
die "Can't find $inDir/$teiDir\n" unless -e "$inDir/$teiDir";
die "Can't find $inDir/$TxtDir\n" unless -e "$inDir/$TxtDir";
`cd $inDir; tar -czf $outTxt $teiDir $TxtDir`;
`cd $inDir; tar -czf $outTxt --mode='a+rwX' $teiDir $TxtDir`;
move("$inDir/$outTxt", $outDir);

print STDERR "INFO: *Packing $anaDir, $ConlDir, $VertDir\n";
Expand All @@ -71,7 +71,7 @@ sub usage {
die "Can't find $inDir/$anaDir\n" unless -e "$inDir/$anaDir";
die "Can't find $inDir/$ConlDir\n" unless -e "$inDir/$ConlDir";
die "Can't find $inDir/$VertDir\n" unless -e "$inDir/$VertDir";
`cd $inDir; tar -czf $outAna $anaDir $ConlDir $VertDir`;
`cd $inDir; tar -czf $outAna --mode='a+rwX' $anaDir $ConlDir $VertDir`;
move("$inDir/$outAna", $outDir);
}
else {
Expand Down
2 changes: 1 addition & 1 deletion Scripts/validate-parlamint.pl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ sub usage
&run("$Saxon -xsl:$Valid", $file);
&run("$Saxon meta=$rootAnaFile -xsl:$Links", $file);
}
else {print STDERR "ERROR: $rootFile XIncluded file $file does not exist!\n"}
else {print STDERR "ERROR: $rootAnaFile XIncluded file $file does not exist!\n"}
}
}
close IN;
Expand Down

0 comments on commit 4c61c8d

Please sign in to comment.