1
0
Fork 0
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:
Carter Snook 2021-05-25 08:01:49 -05:00 committed by Bert Belder
parent 620a2e0f84
commit 18a02c0f79
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -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";
}