Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
  • Loading branch information
John Haley committed Mar 10, 2015
commit a4a3c9ebb69303dbf0c7829fe75207357d35fefa
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function build() {

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

target = "--target=" + asVersion;
Expand Down