Skip to content

Commit

Permalink
fix: link select
Browse files Browse the repository at this point in the history
  • Loading branch information
blurooochen committed May 15, 2020
1 parent 4983f0b commit f24792d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/feflow-cli/src/core/linker/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ export default class Linker {
register(binPath: string, libPath: string, name: string, command: string) {
if (this.currentOs === 'win32') {
this.linkToWin32(binPath, name, command);
} else {
this.linkToUnixLike(binPath, libPath, name, command);
}
this.linkToUnixLike(binPath, libPath, name, command);
}

private linkToWin32(binPath: string, name: string, command: string) {
Expand Down

0 comments on commit f24792d

Please sign in to comment.