diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-11-05 02:17:11 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-04 12:17:11 -0500 |
commit | fb1d33a7111e45e9b414cfe922a5db5ee4daf3ea (patch) | |
tree | fc2c3d797fa7e4d5a56c99b94a0aa1a823fe29e0 /tools/util.js | |
parent | d95f06f20b97839d9a2aaeb590f4ed30b6383b0f (diff) |
chore: update dlint to v0.68.0 for internal (#26711)
Diffstat (limited to 'tools/util.js')
-rw-r--r-- | tools/util.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/util.js b/tools/util.js index 99133628c..8c7cea15d 100644 --- a/tools/util.js +++ b/tools/util.js @@ -11,7 +11,7 @@ export { delay } from "@std/async/delay"; // [toolName] --version output const versions = { - "dlint": "dlint 0.60.0", + "dlint": "dlint 0.68.0", }; const compressed = new Set(["ld64.lld", "rcodesign"]); @@ -178,7 +178,7 @@ export function getPrebuiltToolPath(toolName) { return join(PREBUILT_TOOL_DIR, toolName + executableSuffix); } -const commitId = "b8aac22e0cd7c1c6557a56a813fe0c25486fafee"; +const commitId = "7a3a6fee951b3381c59aa4c907274957f324ce8c"; const downloadUrl = `https://raw.githubusercontent.com/denoland/deno_third_party/${commitId}/prebuilt/${platformDirName}`; |