mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
cleanup(test_plugin): use else if statement (#10718)
This commit is contained in:
parent
620a2e0f84
commit
18a02c0f79
1 changed files with 1 additions and 2 deletions
|
@ -9,8 +9,7 @@ let filenamePrefix = "lib";
|
|||
if (Deno.build.os === "windows") {
|
||||
filenameSuffix = ".dll";
|
||||
filenamePrefix = "";
|
||||
}
|
||||
if (Deno.build.os === "darwin") {
|
||||
} else if (Deno.build.os === "darwin") {
|
||||
filenameSuffix = ".dylib";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue