We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a44857f commit 9fa8ff5Copy full SHA for 9fa8ff5
1 file changed
libexec/fixup.ts
@@ -11,7 +11,7 @@ args:
11
---*/
12
13
import { parseFlags } from "cliffy/flags/mod.ts"
14
-import { useCellar, useFlags } from "hooks"
+import { useCellar, useFlags, usePrefix } from "hooks"
15
import { str } from "utils/pkg.ts"
16
import { run, host } from "utils"
17
import Path from "path"
@@ -36,7 +36,10 @@ case 'darwin':
36
'fix-machos.rb',
37
pkg_prefix.string,
38
...['bin', 'lib', 'libexec'].compact(x => pkg_prefix.join(x).isDirectory())
39
- ]
+ ],
40
+ env: {
41
+ GEM_HOME: usePrefix().join('gem').string
42
+ }
43
})
44
break
45
case 'linux': {
0 commit comments