summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-06-01 20:47:06 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2018-06-01 23:36:51 +0200
commit6fbcb4f1ad6bbcaac1fade0abf6bbe8215c1f4ab (patch)
tree4d17c16d9c497e387b55235a2dd5a28bfa65dae4 /solenv
parentfa7c081ea70854334ad6c4f3d2024f35e110dd67 (diff)
par2script: don't bother removing already removed parts of arguments
the s/\@// conflicts with jenkins default directory naming for concurrent builds and is wrong at this place/in this form: 0ce067c1fc334680a7d99e573ae8c2f3e623b645 already changed the format of the parameter from @listfile to @@listfile, so stripping a single @ at the front won't help at all. Furthermore the stripping already was added to the par2script/parameters.pm earlier, so the worker functions don't need to deal with transforming commandline arguments. Change-Id: Ic55b8cda3cd114dfc5cb7ded6d53174cd8283af9 Reviewed-on: https://gerrit.libreoffice.org/55196 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/par2script/work.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/solenv/bin/modules/par2script/work.pm b/solenv/bin/modules/par2script/work.pm
index 80037850bcc4..cc1f1e4d5607 100644
--- a/solenv/bin/modules/par2script/work.pm
+++ b/solenv/bin/modules/par2script/work.pm
@@ -79,8 +79,6 @@ sub setparfiles
my ($filename) = @_;
# input is the name of the list file
- $filename =~ s/\@//; # removing the leading \@
-
my $filecontent = par2script::files::read_file($filename);
my @parfiles = ();