fix-path

Fix the $PATH on macOS and Linux when run from a GUI app


Keywords
fix, path, macos, env, environment, variable, shell, sh, zsh, electron
License
MIT
Install
npm install fix-path@4.0.0

Documentation

fix-path Build Status

Fix the $PATH on macOS when run from a GUI app

Useful for Electron/NW.js apps as GUI apps on macOS doesn't inherit the $PATH defined in your dotfiles (.bashrc/.bash_profile/.zshrc/etc).

Install

$ npm install --save fix-path

Usage

const fixPath = require('fix-path');

console.log(process.env.PATH);
//=> '/usr/bin'

fixPath();

console.log(process.env.PATH);
//=> '/usr/local/bin:/usr/bin'

Related

License

MIT © Sindre Sorhus