Skip to content

Commit 490dc19

Browse files
committed
bug fix, no issue with previous full 7z version failed to set proper execute mode
1 parent 589934d commit 490dc19

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,11 +79,11 @@ Installation
7979
This package will download the 7zip binaries at install time. Host system does not need to have 7zip installed or in PATH.
8080

8181
The binaries will be downloaded from:
82-
> On Linux - [![Release](https://github.com/techno-express/p7zip/workflows/Release/badge.svg)](https://github.com/techno-express/p7zip/actions/runs/401873413) compiled and available at [releases](https://github.com/techno-express/p7zip/releases/) previously https://sourceforge.net/projects/p7zip which has broken full `7z` version.
82+
> On Linux - [![Release](https://github.com/techno-express/p7zip/workflows/Release/badge.svg)](https://github.com/techno-express/p7zip/actions/runs/401873413) compiled and available at [releases](https://github.com/techno-express/p7zip/releases/) previously https://sourceforge.net/projects/p7zip.
8383
84-
> On Windows - https://www.7-zip.org/download.html
84+
> On Windows - https://www.7-zip.org/download.html.
8585
86-
> On Mac OSX - [![Release](https://github.com/techno-express/p7zip/workflows/Release/badge.svg)](https://github.com/techno-express/p7zip/actions/runs/401873413) compiled and available at [releases](https://github.com/techno-express/p7zip/releases/) previously https://rudix.org/ which has broken full `7z` version.
86+
> On Mac OSX - [![Release](https://github.com/techno-express/p7zip/workflows/Release/badge.svg)](https://github.com/techno-express/p7zip/actions/runs/401873413) compiled and available at [releases](https://github.com/techno-express/p7zip/releases/) previously https://rudix.org/.
8787
8888

8989
```shell

installer.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function makeExecutable(binary = [], binaryFolder = '') {
163163
try {
164164
if (file == 'Codecs')
165165
file = 'Codecs' + sep + 'Rar.so'
166-
fs.chmodSync(join(binaryFolder, file), 755);
166+
fs.chmodSync(join(binaryFolder, file), 777);
167167
} catch (err) {
168168
console.error(err);
169169
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-7z-archive",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"description": "ESM front-end to 7-Zip, featuring alternative full 7z CLI tools, binaries for Linux, Windows, Mac OSX, seamlessly create 7zip SFX self extracting archives targeting different platforms.",
55
"type": "module",
66
"main": "lib/index.mjs",

0 commit comments

Comments
 (0)