From dba2fa31b6fb9cb28c5b0565d5e7065c83b149c2 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 14 Oct 2014 19:27:47 +0800 Subject: [PATCH] Fix __dirname for page in asar package Fixes #694. --- atom/renderer/lib/init.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/renderer/lib/init.coffee b/atom/renderer/lib/init.coffee index 3fb4ceaabf..a6f571b213 100644 --- a/atom/renderer/lib/init.coffee +++ b/atom/renderer/lib/init.coffee @@ -31,7 +31,7 @@ window.addEventListener 'unload', -> # Set the __filename to the path of html file if it's file: or asar: protocol. if window.location.protocol in ['file:', 'asar:'] pathname = - if process.platform is 'win32' + if process.platform is 'win32' and window.location.pathname[0] is '/' window.location.pathname.substr 1 else window.location.pathname