Skip to content

Commit

Permalink
fix: actions being silly
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Dec 26, 2023
1 parent 88dfa06 commit 2429e1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if (import.meta.main) {
});
const denoDir = Deno.env.get("DENO_DIR");

const logLevel = Deno.env.get("CI") === "1"
const logLevel = ["1", "true"].includes(Deno.env.get("CI") ?? "")
? "DEBUG"
: (args.verbose ? "DEBUG" : "INFO");
log.setup({
Expand Down
Loading

0 comments on commit 2429e1c

Please sign in to comment.