Skip to content

Commit a4a3c9e

Browse files
author
John Haley
committed
Fix atom-shell install on windows
The home directory wasn't being set correctly for atom-shell install in a windows environment. Now things should work again.
1 parent ff7bf1c commit a4a3c9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lifecycleScripts/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function build() {
9595

9696
if (asVersion) {
9797
prefix = (process.platform == "win32" ?
98-
"SET HOME=\"~/.atom-shell-gyp\" && " :
98+
"SET HOME=%HOME%\\.atom-shell-gyp && " :
9999
"HOME=~/.atom-shell-gyp");
100100

101101
target = "--target=" + asVersion;

0 commit comments

Comments
 (0)