Skip to content

Commit

Permalink
fix: Deno.build.os from mac to darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
chiefbiiko committed Nov 12, 2020
1 parent cd74aee commit 531b4d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/mod_js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var pluginPath = [
"${name}".replace(/-/g, "_") +
(Deno.build.os + "" === "windows"
? ".dll"
: Deno.build.os + "" === "mac"
: Deno.build.os + "" === "darwin"
? ".dylib"
: ".so"),
].join("/");
Expand Down

0 comments on commit 531b4d8

Please sign in to comment.