Running globally installed packages with permission flags
I globally install something like solc, but then it needs read permissions. But since it's run with solc directly, (not deno) because it gets installed into the deno bin dir, I cannot pass flags to it, like allow-read etc. What is the way to pass flags to Deno if you're running a globally installed tool in its bin?
1 Reply
Ah, I found that I can give permissions while installing. Reinstalling with -f and -A allowed solc to do whatever it wants.