buddy-tunnel
Advanced tools
Comparing version 1.7.24-dev to 1.7.25-dev
{ | ||
"name": "buddy-tunnel", | ||
"preferGlobal": false, | ||
"version": "1.7.24-dev", | ||
"version": "1.7.25-dev", | ||
"type": "commonjs", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -189,3 +189,5 @@ const { resolve } = require('path'); | ||
const getHomeDirectory = () => { | ||
const r = homedir(); | ||
let r; | ||
if (isDocker()) r = '/buddy'; | ||
else r = homedir(); | ||
const p = path.join(r, '.buddy-tunnel'); | ||
@@ -192,0 +194,0 @@ if (!existsSync(p)) mkdirSync(p, { recursive: true }); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
352491
8386