summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2024-07-12 12:07:24 -0400
committerSolomon Peachy <pizza@shaftnet.org>2024-07-12 12:08:37 -0400
commit8753c41b2e4f5a670fedcd2e06d8375f8c317844 (patch)
treee481cf59924c3d4cc8d194d32b7c5b6b866b050f
parent6a6fa0702a3ea736dc0c1820f308697d7b6bb453 (diff)
downloadrockbox-8753c41b2e.tar.gz
rockbox-8753c41b2e.zip
tools: Fix the tools/release/manuals.pl script
It was looking for the versioned pdf filename, which it then renamed immediately anyway. Change-Id: I3173fde3cdde56b4bf0b95f9d08b2b8468381972
-rwxr-xr-xtools/release/manuals.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/release/manuals.pl b/tools/release/manuals.pl
index 61d298fd38..d85ed48ff2 100755
--- a/tools/release/manuals.pl
+++ b/tools/release/manuals.pl
@@ -28,7 +28,7 @@ sub runone {
chdir "..";
- my $o="buildm-$dir/rockbox-$dir-$version.pdf";
+ my $o="buildm-$dir/rockbox-manual.pdf";
if (-f $o) {
my $newo="$outdir/rockbox-$dir-$version.pdf";
system("mv $o $newo");