diff --git a/CHANGES.md b/CHANGES.md index 54aef5624ae..7bec2079f22 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,12 @@ Libplanet changelog Version 1.1.1 ------------- -To be released. +Released on May 15, 2023. + + - (@planetarium/cli) Fixed the installer bug that it had failed on Linux and + macOS since version 1.0.2. [[#3107], [#3160], [#3161]] + +[#3161]: https://github.com/planetarium/libplanet/pull/3161 Version 1.1.0 @@ -144,6 +149,17 @@ Released on May 9, 2023. [Bencodex.Json 0.10.0]: https://www.nuget.org/packages/Bencodex.Json/0.10.0 +Version 1.0.3 +------------- + +Released on May 15, 2023. + + - (@planetarium/cli) Fixed the installer bug that it had failed on Linux and + macOS since version 1.0.2. [[#3107], [#3160]] + +[#3160]: https://github.com/planetarium/libplanet/pull/3160 + + Version 1.0.2 ------------- diff --git a/Libplanet.Tools/download.mjs b/Libplanet.Tools/download.mjs index a50d75fc68e..71272dfc37f 100644 --- a/Libplanet.Tools/download.mjs +++ b/Libplanet.Tools/download.mjs @@ -56,7 +56,7 @@ export async function download(options = {}) { return extractZip(archivePath, { dir: dirPath }); } else { return new Promise((resolve, reject) => { - const subproc = child_process.spawn("tar", ["xvJ", archivePath], { + const subproc = child_process.spawn("tar", ["xvfJ", archivePath], { cwd: dirPath, stdio: ["ignore", "ignore", "ignore"] });