diff options
| author | 2025-03-22 19:38:04 -0500 | |
|---|---|---|
| committer | 2025-03-22 19:38:04 -0500 | |
| commit | c155231ff652089d5a76b655da9813eb10e37384 (patch) | |
| tree | 35b9ccc2f29bf40c0d901dab4a5ec3739fd02436 /bin | |
| parent | We may have permission issues in higher directories. (diff) | |
Fix up configuration on windows.
Avoid symlinks for local directory installation. They are not needed.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/janet-pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/janet-pm b/bin/janet-pm index f064d4f..b5d9bb0 100755 --- a/bin/janet-pm +++ b/bin/janet-pm @@ -3,6 +3,7 @@ (import spork/argparse) (import spork/path) (import spork/pm) +(import spork/pm-config) (import spork/sh) # Do not import declare-cc here - keep a clean separation for faster load times @@ -297,7 +298,7 @@ (when-let [sp (get ap :syspath)] (put root-env *syspath* sp)) # Do configuration - (pm/read-env-variables root-env) + (pm-config/read-env-variables root-env) (def [sub-command & command-args] (ap :default)) (def cmd (get subcommands sub-command)) |
