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:
Steven Penny 2014-04-18 18:20:05 -05:00
parent 7fedcba256
commit 3d0f4a0c84
1 changed files with 2 additions and 2 deletions

View File

@ -92,8 +92,8 @@ function findworkspace()
echo Working directory is $cache
echo Mirror is $mirror
mkdir -p "$cache/$mirrordir"
cd "$cache/$mirrordir"
mkdir -p "$cache/$mirrordir/$ARCH"
cd "$cache/$mirrordir/$ARCH"
}
function getsetup()