Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
strip-nondeterminism
Compare revisions
4380d64acce35783ca05fc26879ecc9a64f1f0f6...1c323026cea4e6c34ec89943fcbd6252618f76db
Commits (2)
update pyzip regex for latest file(1)
· f1017c67
FC Stegerman
authored
Jan 01, 2023
f1017c67
Merge branch 'fix-pyzip' of salsa.debian.org:obfusk/strip-nondeterminism
· 1c323026
Mattia Rizzolo
authored
Jan 02, 2023
MR:
!15
Signed-off-by:
Mattia Rizzolo
<
mattia@debian.org
>
1c323026
Hide whitespace changes
Inline
Side-by-side
lib/File/StripNondeterminism.pm
View file @
1c323026
...
...
@@ -111,7 +111,7 @@ sub get_normalizer_for_file($) {
}
# pyzip - check last due to call to file(1)
if
(
_get_file_type
(
$_
)
=~
m/python3 script executable \(binary data\)/
)
{
if
(
_get_file_type
(
$_
)
=~
m/python3 script executable \(
(Zip archive|
binary data
)
\)/
)
{
my
$handler
=
_handler
('
pyzip
');
return
$handler
if
File::StripNondeterminism::handlers::pyzip::
is_pyzip_file
(
$_
);
...
...