Fix install directory
packages were installing to "$cache/$mirrordir" which I believe is a relic of pre 64-bit Cygwin. Packages now install to "$cache/$mirrordir/$ARCH" which is inline with the official Cygwin installer.
This commit is contained in:
parent
7fedcba256
commit
3d0f4a0c84
4
apt-cyg
4
apt-cyg
|
@ -92,8 +92,8 @@ function findworkspace()
|
||||||
|
|
||||||
echo Working directory is $cache
|
echo Working directory is $cache
|
||||||
echo Mirror is $mirror
|
echo Mirror is $mirror
|
||||||
mkdir -p "$cache/$mirrordir"
|
mkdir -p "$cache/$mirrordir/$ARCH"
|
||||||
cd "$cache/$mirrordir"
|
cd "$cache/$mirrordir/$ARCH"
|
||||||
}
|
}
|
||||||
|
|
||||||
function getsetup()
|
function getsetup()
|
||||||
|
|
Loading…
Reference in New Issue