a99c193cf2
Currently, when calling `copyFileOut`, the original extension from the file is lost, and a generic `*.tmp` is added instead. This becomes problematic in the scenario where we use `child_process.execFile` on a Windows Batch script that lives inside the `asar` package. Windows relies on the extension being present in order to interpret the script accordingly, which results in the following bug because the operating system doesn't know what do to with this `*.tmp` file: ``` Error: spawn UNKNOWN ``` Steps to reproduce: 1. Create a dummy batch script (test.bat): ``` @echo off echo "Hello world" ``` 2. Create an electron app that attemps to call this script with `child_process.execFile`: ```js var child_process = require('child_process'); var path = require('path'); child_process.execFile(path.join(__dirname, 'test.bat'), function(error, stdout) { if (error) throw error; console.log(stdout); }); ``` 3. Package this small application as an asar archive: ```sh > asar pack mytestapp app.asar ``` 4. Execute the application: ```sh > electron.exe app.asar ``` |
||
---|---|---|
.. | ||
api | ||
asar | ||
crash_reporter | ||
lib | ||
linux | ||
native_mate_converters | ||
resources/mac | ||
atom_command_line.cc | ||
atom_command_line.h | ||
atom_constants.cc | ||
atom_constants.h | ||
atom_version.h | ||
chrome_version.h | ||
common_message_generator.cc | ||
common_message_generator.h | ||
draggable_region.cc | ||
draggable_region.h | ||
google_api_key.h | ||
id_weak_map.cc | ||
id_weak_map.h | ||
keyboad_util.cc | ||
keyboad_util.h | ||
node_bindings.cc | ||
node_bindings.h | ||
node_bindings_linux.cc | ||
node_bindings_linux.h | ||
node_bindings_mac.cc | ||
node_bindings_mac.h | ||
node_bindings_win.cc | ||
node_bindings_win.h | ||
node_includes.h | ||
options_switches.cc | ||
options_switches.h | ||
platform_util.h | ||
platform_util_linux.cc | ||
platform_util_mac.mm | ||
platform_util_win.cc |