mirror of
https://github.com/denoland/deno.git
synced 2025-02-13 01:06:00 -05:00
![Marvin Hagemeister](/assets/img/avatar_default.png)
This commit changes "Deno.cwd()" (as well as "process.cwd()") to no longer require full "--allow-read" permission. This change was meant to be done in Deno 2.0.0, but somehow it slipped. Requiring full read permission just to read the CWD is a mistake, because CWD can already be obtained with no permission by throwing an error in JS and inspecting its stack. Fixes https://github.com/denoland/deno/issues/27110 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
3 lines
133 B
JavaScript
3 lines
133 B
JavaScript
console.log("Hello in CLI with permissions");
|
|
console.log("Reading DENO_HELLO env var...");
|
|
console.log(Deno.env.get("DENO_HELLO"));
|