We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
~/.ghcup
1 parent 148d4bc commit a32f588Copy full SHA for a32f588
app/src/interpreter.js
@@ -49,7 +49,8 @@ exports.main.init = () => {
49
let env = {}
50
env['HOME'] = app.getPath('home') // necessary for finding package database
51
// FIXME: Where to we get the path from as a standalone application?
52
- env['PATH'] = process.env['PATH'] + ':/usr/local/bin' // pick up path from external environment if possible
+ // pick up path from external environment if possible
53
+ env['PATH'] = process.env['PATH'] + ':/usr/bin:/usr/local/bin:' + env['HOME'] + '/.ghcup/bin'
54
env['PORT'] = port.toString()
55
let cmd = ''
56
let args = []
0 commit comments