Skip to content

Commit

Permalink
Merge pull request #3161 from dahlia/1.1-maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
dahlia authored May 15, 2023
2 parents 0e4d11b + d320d67 commit e158557
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
-------------

Expand Down
2 changes: 1 addition & 1 deletion Libplanet.Tools/download.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
});
Expand Down

0 comments on commit e158557

Please sign in to comment.