hansva commented on issue #5943: URL: https://github.com/apache/hop/issues/5943#issuecomment-5070036352
I know the root of your issue, let's see how we tackle this. The unzip was unique in the fact that the regex was being matched on the complete string eg. "/my/location/geoip_and_some_more.zip" which made you write ".*/geoip.*\.zip" This has been changed to be the same as text file input, and other transforms where the wildcard is only done on the filename, so your regex should become "geoip_.*\.zip" This was changed because it was confusing for end users that, out of all places, this was different, but it has also introduced a regression. I guess for this action we will have to do matching on both the old and the new (full path and filename) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
