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
So in AL9, we get a warning from gzip about the GZIP=-n in the environment:
gzip: warning: GZIP environment variable is deprecated; use an alias or script
when we are making a tarfile with tardir:, of course we do this to get a compressed
file that is repeatable; but we should instead probably
a) switch to bz2 and
b) possibly switch to using the python tar module to make the tarfile, but that will involve
walking the directory tree, handling the exclude list, etc.
The text was updated successfully, but these errors were encountered:
So in AL9, we get a warning from gzip about the GZIP=-n in the environment:
gzip: warning: GZIP environment variable is deprecated; use an alias or script
when we are making a tarfile with tardir:, of course we do this to get a compressed
file that is repeatable; but we should instead probably
a) switch to bz2 and
b) possibly switch to using the python tar module to make the tarfile, but that will involve
walking the directory tree, handling the exclude list, etc.
The text was updated successfully, but these errors were encountered: