asar icon indicating copy to clipboard operation
asar copied to clipboard

Simple extensive tar-like archive format with indexing

Results 64 asar issues
Sort by recently updated
recently updated
newest added

Command `unpackDir` uses the following code to determine whether the directory should be unpacked: ``` shouldUnpack = options.unpackDir ? isUnpackDir(path.relative(src, filename), options.unpackDir) : false; ``` The above basically uses a...

wontfix

While using instanbul in my Electron process, I get this error: `A JavaScript error occurred in the main process Uncaught Exception: Error: ENOENT, browser/api/app.js not found in /Users/paolo/unity/unityeditor-hub/Unity-darwin-x64/Unity.app/Contents/Resources/electron.asar at notFoundError...

wontfix

Hi, this check https://github.com/electron/asar/blob/master/src/filesystem.coffee#L75-L76 doesn't allow developer to use npm linked packages (symlink to package sources). Is that check necessary? Is there a workaround?

wontfix

For example, with the following tree: ``` dir1 file1.txt dir2 file2.txt dir3 file3.txt ``` `--unpack-dir "dir1"` on OS X will unpack everything: ``` dir1 file1.txt dir2 file2.txt dir3 file3.txt ```...

wontfix

I am packaging an application in Electron and using asar to do this. My application has a `cfg` folder that end users are allowed to edit to change core behavior...

enhancement
wontfix

MacOSX: El Capitan 10.11.4 RAM: 16GB asar: v0.11.0 electron: v1.0.2 node-java: 0.7.0 If I leave my application as a simple folder it works correctly but if I use asar to...

wontfix

Hey team, I'm getting this error when trying to use the asar pragmatically ``` [Error: Invalid package name.asar at invalidArchiveError (ATOM_SHELL_ASAR.js:138:13) at Objec…] 0: Error: Invalid package name.asar at invalidArchiveError...

wontfix

I have a file named `a` in my app. Dir is `app/x/a` and it link to `app/x/b`. When I extract app with Windows 8 ``` bash E:\electron-v0.35.0-win32-x64\resources>asar e app.asar .\asds\...

wontfix

Something like that, or with any other method to support multiple folders ``` asar pack . app.asar --unpack "/path/to/something/**, /path/to/something/else/**" ```

wontfix

I used the command `asar pack app app.asar --unpack *.dll` to exclude a single dll from my asar. The file was extracted to the correct directory and it was removed...

wontfix