Skip to content

Commit 8e456fa

Browse files
committed
chores: update upstream to v0.1.0-68
1 parent a50e6b9 commit 8e456fa

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

hoshi-lang

Submodule hoshi-lang updated from afe06bb to 13d004b

src/pardo/pm/management.hoshi

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,9 @@ impl BasePackageManager {
193193
let keys = exposed_map.keys()
194194
for (let i = 0; i < keys.length; i += 1) {
195195
let bin_name = keys[i]
196-
let link_path = target_bin_dir / bin_name
196+
[[platform == "win32"]] let ext = ".exe"
197+
[[platform != "win32"]] let ext = ""
198+
let link_path = target_bin_dir / (bin_name + ext)
197199
link_path.remove()
198200
}
199201

0 commit comments

Comments
 (0)