Skip to content

Commit

Permalink
build: fix file mode
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Dec 26, 2023
1 parent 7969ebb commit 1fc4004
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ const bundled = await bundle(
);

ensureDir("./dist");
await Deno.writeTextFile("./dist/cache.js", bundled.code);
await Deno.writeTextFile("./dist/cache.js", bundled.code, {
mode: 0o744,
});
Empty file modified dist/cache.js
100644 → 100755
Empty file.

0 comments on commit 1fc4004

Please sign in to comment.