We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6017cc9 commit eb2581bCopy full SHA for eb2581b
2 files changed
src/EditorconfigChecker/Cli.php
@@ -4,7 +4,7 @@
4
5
use EditorconfigChecker\Utilities;
6
7
-define('CORE_VERSION', '3.0.0');
+define('CORE_VERSION', '3.2.1');
8
9
class Cli
10
{
src/EditorconfigChecker/Utilities.php
@@ -123,7 +123,7 @@ public static function unpack(string $releaseName): bool
123
124
try {
125
$p = new \PharData(sprintf("%s/%s.tar", Utilities::getBasePath(), $releaseName));
126
- $p->extractTo(Utilities::getBasePath());
+ $p->extractTo(Utilities::getBasePath(), "bin/$releaseName");
127
128
if (!unlink(sprintf("%s/%s.tar", Utilities::getBasePath(), $releaseName))) {
129
printf('ERROR: Can not remove the decompressed archive%s', PHP_EOL);
0 commit comments