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
Files with "xz" extensions seem not to be installed with apt-cyg
What steps will reproduce the problem?
1. fresh install cygwin with default plus wget
2. try installing LibXpm4
3. get error "bunzip2: (stdin) is not a bzip2 file."
What is the expected output? What do you see instead?
packages should be installed without this error
What version of the product are you using? On what operating system?
v0.58
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 10 Jul 2014 at 12:53
The text was updated successfully, but these errors were encountered:
at least, but not complete, the following change solves the problem.
if [[ $file == *.bz2 ]]
then
cat $file | bunzip2 | tar > "/etc/setup/$pkg.lst" xvf - -C /
elif [[ $file == *.xz ]]
then
cat $file | unxz | tar > "/etc/setup/$pkg.lst" xvf - -C /
fi
Original issue reported on code.google.com by
[email protected]
on 10 Jul 2014 at 12:53The text was updated successfully, but these errors were encountered: