Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

do_strip x265 check fails #2683

Open
L4cache opened this issue May 15, 2024 · 0 comments
Open

do_strip x265 check fails #2683

L4cache opened this issue May 15, 2024 · 0 comments

Comments

@L4cache
Copy link
Contributor

L4cache commented May 15, 2024

I just noticed my x265 binary in local64 is much larger than usual, it's back to usual range after I manually strip it.
x265 is put in nostrip and then explicitly checked like this

[[ $file =~ x265(|-numa)\.exe$ ]]; then

It have worked but now it's not working. (It stopped working quite recently)

$ if [[ "x265.exe" =~ x265(|-numa)\.exe$ ]]; then echo yes; else echo no; fi
no

This works:

$ if [[ "x265.exe" =~ (x265|x265-numa)\.exe$ ]]; then echo yes; else echo no; fi
yes

I wonder what caused this change of behavior, some update in the bash maybe?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant