feat(deno): autoload deno CLI to path, alongside some changes to .profile

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.xyz>
This commit is contained in:
Andrei Jiroh Halili 2024-06-06 23:08:06 +08:00
parent 056170d4f9
commit abc65fb8d4
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
2 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,4 @@
#!/usr/bin/env bash
export DENO_INSTALL="$HOME/.deno"
[ -d "$DENO_INSTALL/bin" ] && export PATH="$DENO_INSTALL/bin:$PATH"