Skip to content

Commit

Permalink
🩹 Change path adding order
Browse files Browse the repository at this point in the history
  • Loading branch information
s-weigand committed Oct 20, 2024
1 parent f8dab6b commit 120581b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/conda_actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ const sane_add_path = (path_to_add: string): void => {
*/
const add_bin_dir = (python_dist_dir: string, config: ConfigObject): void => {
if (config.os === "win32") {
sane_add_path(join(python_dist_dir, "Scripts"));
sane_add_path(join(python_dist_dir, "Library", "bin"));
sane_add_path(join(python_dist_dir, "usr", "Library", "bin"));
sane_add_path(join(python_dist_dir, "mingw-w64", "Library", "bin"));
sane_add_path(join(python_dist_dir, "usr", "Library", "bin"));
sane_add_path(join(python_dist_dir, "Library", "bin"));
sane_add_path(join(python_dist_dir, "Scripts"));
} else {
sane_add_path(join(python_dist_dir, "bin"));
}
Expand Down

0 comments on commit 120581b

Please sign in to comment.