diff options
| author | Carter Snook <cartersnook04@gmail.com> | 2021-05-25 08:01:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-25 15:01:49 +0200 |
| commit | b96d7a666259c423b7985da12a1474fc1f18796e (patch) | |
| tree | 20a92cf5d30276f54c3d46a2dd378673ffa951d8 | |
| parent | 3a2e020c8f7538efe34ea2f7141d276c1e34a077 (diff) | |
cleanup(test_plugin): use else if statement (#10718)
| -rw-r--r-- | test_plugin/tests/test.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test_plugin/tests/test.js b/test_plugin/tests/test.js index 5e0e6d5a4..2a2fa66b3 100644 --- a/test_plugin/tests/test.js +++ b/test_plugin/tests/test.js @@ -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"; } |
