You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our builds started failing because the archive we create & upload to our environments were empty. After a lot of debugging I found that #964 caused the issue.
I wonder why the tests pass in this scenario? Do all tests have a non-empty ignore list now?
Please see if #979 fixes the issue for you. I'll make a quick release to fix without tests, but it would be good to have a test with an empty ignore list as a follow-on PR.
Our builds started failing because the archive we create & upload to our environments were empty. After a lot of debugging I found that #964 caused the issue.
https://github.com/consolidation/Robo/pull/964/files#diff-b826726cd9ecd307766875aaa192e6c5R58 sets the ignoreList to an empty array. Then it calls the
setIgnoreList
method on the tar object: https://github.com/consolidation/Robo/pull/964/files#diff-b826726cd9ecd307766875aaa192e6c5R209Which causes the ignore regexp to result in
#/#
in https://github.com/pear/Archive_Tar/blob/master/Archive/Tar.php#L732This regexp matches all our files, resulting in empty archives :(
The text was updated successfully, but these errors were encountered: