1
0
Fork 0

Fix home directory when system does not support XDG

pull/1407/head
Nicolas Toniazzi 2014-12-15 14:21:03 +01:00
parent 75448ff09c
commit d3e6a464d6
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class Factory
}
$home = $xdgConfig . '/composer';
} else {
$home = $userDir . '/composer';
$home = $userDir . '/.composer';
}
}
}