Skip to content

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

License

Notifications You must be signed in to change notification settings

YS-FE/fix-path

 
 

Repository files navigation

fix-path Build Status

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

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

Install

$ npm install 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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 82.8%
  • TypeScript 17.2%