Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Dec 27, 2024
1 parent 2147cf8 commit ed3d525
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install Deno
uses: denoland/setup-deno@v1
uses: denoland/setup-deno@v2
with:
deno-version: canary

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ lto = true
opt-level = "z"

[patch.crates-io]
deno_path_util = { git = "https://github.com/denoland/deno_path_util", branch = "refactor_use_sys_traits" }
deno_path_util = { git = "https://github.com/denoland/deno_path_util", branch = "refactor_use_sys_traits" }
2 changes: 1 addition & 1 deletion deno_dir.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isAbsolute, join, resolve } from "@std/path";
import { DiskCache } from "./disk_cache.ts";
import { HttpCache } from "./http_cache.ts";
import { assert } from "./util.ts";
import { instantiate } from "./lib/deno_cache_dir.generated.js"
import { instantiate } from "./lib/deno_cache_dir.generated.js";

export class DenoDir {
readonly root: string;
Expand Down

0 comments on commit ed3d525

Please sign in to comment.