Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Replacing deprecated os-homedir with homedir-polyfill #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion osenv.js
Expand Up @@ -2,7 +2,7 @@ var isWindows = process.platform === 'win32'
var path = require('path')
var exec = require('child_process').exec
var osTmpdir = require('os-tmpdir')
var osHomedir = require('os-homedir')
var osHomedir = require('homedir-polyfill')

// looking up envs is a bit costly.
// Also, sometimes we want to have a fallback
Expand Down